Moving an Azure VM between networks was before, delete, recreate, reattached disk as documented here:
Which works a charm by the way, however you can now powershell it as documented here:
“
$context = Get-AzureVM -ServiceName contosomed -Name server01
Set-AzureSubnet -SubnetNames "WFE" -VM $context
Update-AzureVM -ServiceName contosomed -Name server01 -VM $context.VM
“
No comments:
Post a Comment