Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Live Migration VMs from PowerShell in a cluster.
September 8, 2015
Q. How do I live migrate VMs in a cluster with PowerShell, Move-VM does not work.
A. Move-VM is used to perform Live Migrations outside of a cluster. To move VMs in a cluster use:
Get-VM | Move-ClusterVirtualMachineRole -MigrationType Live -Node -Wait 0
You May Also Like