Backup the ESXi configuration

I create a simple PowerCLI script that backups all the VMware ESXi host configurations that are connected to a vCenter Server. This script can be scheduled to make for example every week a backup of the ESXi server configs. You can easily customize the script for your own needs.

#Variables
$Folder = "D:\Backup\BCK-ESXi"
$FolderOld = "D:\Backup\BCK-ESXi\_old"
$vc= "vcenterserver-fqdn"
# Connect to local vCenter Server
Connect-ViServer
# Move existing backup files to the old directory
Move-Item ($Folder + "\*.tgz") $FolderOld -force -ErrorAction SilentlyContinue
# Backkup ESXi configuration
Get-VMHost | ForEach-Object {
    $_ | Get-VMHostFirmware -BackupConfiguration -DestinationPath $folder
}
# Disconnect session vCenter
Disconnect-VIserver -Confirm:$false
comments powered by Disqus