In Windows Server, it is an easy point-an-click task to setup backups using Windows Server Backup; however, Hyper-Visor Core is all command line (yay!!!!).
Once logged into the Hyper-Visor server, open a regular old command prompt and get ready to do the following:
- Install the backup command-line tools
- Setup your backup
To install the backup command-line tools, run the following command:
start /w ocsetup WindowsServerBackup
After a few seconds, the install will complete (there is no notification other than returning to the prompt) and you can now setup your backup. In my example, we want a full backup of EVERYTHING to our SAN everyday at 12:15 am. To set this up, type the following command:
wbadmin enable backup -addtarget:\\Location\Where\You\Want\To\Backup\To -schedule:00:15 -allCritical -systemState -vssFull -user:User_Account_for_Remote_Location -password:Password_For_Account -quiet
Press enter and you will see your backup being created. If everything went smoothly, you will see "The scheduled backup is enabled" confirming your settings.