标签: powershell azure
我试图在订阅之间移动虚拟机(ARM)。
使用V1机器,这个过程很简单。
我尝试创建一个新的ARM虚拟机并替换vhd文件,但这不起作用,因为vhd blob即使在机器关闭时也有租约。
有没有办法使用PowerShell实现这个目标?
答案 0 :(得分:1)
This should work -
Set-AzureRmVMOSDisk -VM $vm -Name "test" -VhdUri $uri -CreateOption attach -Windows
Wrapped into the rest of a VM Create script