Saturday, May 5, 2018

Backing up Hyper-V virtual machines from the command line

The tool you will want to use is “wbadmin.exe”
Backing up a virtual machine is fairly straight forward.  Your command will look like this:

wbadmin start backup –backupTarget: –hyperv:

Which will result in something like this:
image
Some things to be aware of:
  • Wbadmin will always warn you that the virtual machine will be put into a saved state for backup.  This is wrong.  The virtual machine will only be put into a saved state if it is not running the latest virtual machine additions (or is not a Windows virtual machine).
  • You will be prompted before the backup starts.  You can get around this by adding –force to the end of the command.
  • You can use either the virtual machine name or the virtual machine ID when selecting virtual machines.
  • You can list multiple virtual machines to backup.
  • If you are backing up to a SMB share – new backups will automatically overwrite old backups (i.e. there will only be one backup kept on the share).  This will not happen if you are backing up to a local disk.
Once you have created the backup – you then need to know how to restore it.  This is, unfortunately, more complicated.  The first thing you will need to do is to find the version of the backup and the name of the virtual machine you want to restor.  You can find the version of the backup by running:
wbadmin get versions –backupTarget:

image
If the backup was taken a while ago – you may have forgotten the name(s) of the virtual machines that you backed up.  You can find this by running:
wbadmin get items –version: –backuptarget:

image
Once you have this information you can restore the backed up virtual machine by running:
wbadmin start recover –version: –itemType:hyperv –items: –backuptarget:
image

No comments:

Post a Comment