Post

Migrate VMs between clusters with powecli

A short script to migrate VMs to a new cluster or host. Migrates one vm at a time to save network bandwith. After migration it upgrades Vmware tools to match current host version.

Takes a CSV file as input with VMs to migrate.

1
2
3
4
5
6
7
8
9
10
11
12
13
Param (
    [Parameter (Mandatory = $True)]
    $file
)
$vms = Import-Csv $file
 
foreach ($vm in $vms)
{
    Write-Host "Migrating VM" $vm.name
    Move-VM -VM $vm.name -Destination Cluster01
    Write-Host "Updating Vm-tools on " $vm.name
    Update-Tools -VM $vm.name -NoReboot
}
This post is licensed under CC BY 4.0 by the author.