Monday, 27 February 2017

Extend Azure VM C drive

Extend size of Azure Virtual Machine C drive.
Before going through this post, determine the exact requirement of the size. Once you extend the size there no reduce option available. Also remember that extending SSD drive would influence on your billing.

Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionName 'my-subscription-name'
$rgName = 'my-resource-group-name'
$vmName = 'my-vm-name'
$vm = Get-AzureRmVM -ResourceGroupName $rgName -Name $vmName
Stop-AzureRmVM -ResourceGroupName $rgName -Name $vmName
$vm.StorageProfile.OSDisk.DiskSizeGB = 500
Update-AzureRmVM -ResourceGroupName $rgName -VM $vm
Start-AzureRmVM -ResourceGroupName $rgName -Name $vmName
Go to the computer management and Extend the C Drive Size.

No comments:

Post a Comment