Retrospectively Check which VMs Migrated during HA Failover

Issue: An ESXi server crashed invoking HA. I wanted to check which VMs had restarted and on what host so I could check they were functioning correctly.   Resolution: Thanks to my colleague for the following PowerCLI script: PowerCLI C:\> Connect-VIServer -Server {your_vcenter} -User {your_username} -Password {your_password} PowerCLI C:\> $Date = Get-Date PowerCLI C:\> $HAVMrestartold Read More…