Forum Discussion
Dwayne Grant
Oct 24, 2017Copper Contributor
Is it possible to autoscale an azure server that is not a part of an availability set?
Good day,
I created a server for a client but would need the RAM to be increased from 8GB to 16GB for 2 weeks out of the month then revert to 8GB automatically. Is it possible to do so if the ...
null null
Jan 03, 2018Copper Contributor
pretty easy to do just create a runbook and throw a schedule on the runbook
$vm = Get-AzureRmVM -ResourceGroupName <resourceGroup> -VMName <vmName> $vm.HardwareProfile.VmSize = "<newVMsize>"
Update-AzureRmVM -VM $vm -ResourceGroupName <resourceGroup>