1

我用这个命令来启动一个虚拟机:

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 时,有什么办法可以摆脱这个驱动器吗?

PS我知道它的剂量,我不需要它。

4

3 回答 3

1

日期为 18-02-2021 没有本地临时磁盘的 Azure VM 大小,现在可以使用 https://docs.microsoft.com/en-us/azure/virtual-machines/azure-vms-no-temp-disk

于 2021-02-18T18:23:16.003 回答
1

我想出了这个解决方案:

$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
于 2019-04-18T08:48:22.363 回答
1

不幸的是,所有的 Azure 虚拟机至少有两个磁盘,一个是操作系统磁盘,另一个是临时磁盘。临时磁盘随 VM 大小一起提供。您可以看到vm 大小,使用临时存储回显一个。

因此,您无法在没有临时磁盘的情况下创建 VM。您需要考虑的是如何根据驱动器号的需要更改您的应用程序。例如,将需要的磁盘更改为驱动器号 E。

于 2019-04-18T08:10:25.933 回答