我使用此命令来启动虚拟机:
az vm create -n $virtualMachine -g $resourceGroup --size Standard_D2_v3 --image win2016datacenter --data-disk-sizes-gb 40
--location $location --admin-username $admin --admin-password $password
每次创建标有“临时存储”的驱动器D时,有什么方法可以摆脱这个驱动器吗?
P.S我知道它做了什么,我不需要它。
不幸的是,所有Azure虚拟机至少有两个磁盘,一个是操作系统磁盘,另一个是临时磁盘。临时磁盘附带VM大小。你可以看到vm sizes,用Temp存储回声。
因此,如果没有临时磁盘,则无法创建VM。您需要考虑的是如何根据驱动器号的需要更改您的应用程序。例如,将磁盘需求更改为驱动器号E.
我想出了这个解决方案:
$resourceGroup = "your resource group name"
$virtualMachine = "your virtual machine name"
# remove page file from drive d
az vm run-command invoke -g $resourceGroup -n $virtualMachine --command-id RunPowerShellScript --scripts '$CurrentPageFile = Get-WmiObject -Query "select * from Win32_PageFileSetting"; $CurrentPageFile.delete(); Set-WMIInstance -Class Win32_PageFileSetting -Arguments @{name="c:\pagefile.sys";InitialSize = 0; MaximumSize = 0}; Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\cdrom -Name Start -Value 4 -Type DWord'
# restart server
az vm restart -g $resourceGroup -n $virtualMachine
# set drive d and it's related disk into offline mode
az vm run-command invoke -g $resourceGroup -n $virtualMachine --command-id RunPowerShellScript --scripts 'get-disk -Number (Get-Partition -DriveLetter D).disknumber | Set-Disk -IsOffline $true'
# get azure disks and initialize, format and label it (assign a drive letter as well)
az vm run-command invoke -g $resourceGroup -n $virtualMachine --command-id RunPowerShellScript --scripts 'Get-Disk | Where partitionstyle -eq "raw" | Initialize-Disk -PartitionStyle MBR -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem NTFS -NewFileSystemLabel "disk2" -Confirm:$false'
正如@Charles Xu所说,你不能删除它,但你可以忽略它并让它脱机。我花了很多时间来弄清楚它,但它可能会节省一些时间。
如果你只需要powershell就是这样:
$CurrentPageFile = Get-WmiObject -Query "select * from Win32_PageFileSetting";
$CurrentPageFile.delete();
Set-WMIInstance -Class Win32_PageFileSetting -Arguments @{name="c:\pagefile.sys";InitialSize = 0; MaximumSize = 0};
Set-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Services\cdrom -Name Start -Value 4 -Type DWord
# you need to restart at this stage
get-disk -Number (Get-Partition -DriveLetter D).disknumber | Set-Disk -IsOffline $true
Get-Disk | Where partitionstyle -eq "raw" | Initialize-Disk -PartitionStyle MBR -PassThru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem NTFS -NewFileSystemLabel "disk2" -Confirm:$false