PowerCLI: backup and restore an array of ESXi hosts


The following script makes a backup of the ESXi Host configuration file for an Array of Hosts in a folder on your Management station in C:\BackupMeUp. If you run the backup task multiple times, it will overwrite the saved configuration files for the hosts it already contains a configuration file for.

Backup an Array of ESXi hosts

Write-Host "Backing up ESXi config to C:\BackupMeUp"

$vmhost_array = @("esxi1.mydomain.com")
foreach ($vmhost in $vmhost_array) {
Get-VMHostFirmware -VMHost $vmhost -BackupConfiguration -DestinationPath C:\BackupMeUp
}

Write-Host "Backup is completed!"

The following script restores the host configuration from the folder on your Management station C:\BackupMeUp for an Array of Hosts. Make sure that you know which hosts it will restore, and that you modify this in the script. Not doing this will result in all the hosts reading and uploading the saved configuration file from C:\BackupMeUp, putting the hosts in maintenance mode and rebooting them!

Restore an Array of ESXi hosts

Write-Host

Write-Host "ESXi restore config from C:\BackupMeUp"

$vmhost_array = @("esxi1.mydomain.com")
foreach ($vmhost in $vmhost_array) {
Set-VMHost -VMHost $vmhost -State 'Maintenance'
Get-VMHost -Name $vmhost | Set-VMHostFirmware -Restore -SourcePath c:\BackupMeUp-HostUser root -HostPassword password123

}

Write-Host "ESXi will REBOOT now"
Write-Host "Process complete"

For more information look here: https://www.vmware.com/support/developer/PowerCLI/PowerCLI501/html/Set-VMHostFirmware.htm


Be the first to comment

Leave a Reply

Your email address will not be published.


*


This site uses Akismet to reduce spam. Learn how your comment data is processed.