I would like to use the free fersion of Veeam to backup my VMs on a Windows Hyper-V 2016 server. The free version of the tool does not provide a tool to do regular backups, so I have been looking at a way to use its API in combination with task scheduler.
In my search for a solution I came across this post, which pretty much details all I need:
https://blog.mwpreston.net/2015/04/29/scheduling-veeam-backup-free-edition-backups/
Param(
[Parameter(Mandatory=$true)][string]$VM,
[Parameter(Mandatory=$true)][string]$Destination,
[Parameter(Mandatory=$true)][ValidateSet(0,4,5,6,9)][int]$Compression,
[bool]$DisableQuiesce=$true,
[Parameter(Mandatory=$true)][ValidateSet("Never","Tonight","TomorrowNight","In3days","In1Week","In2Weeks","In1Month")][string]$Autodelete
)
#Load Veeam Toolkit
& "C:\Program Files\Veeam\Backup and Replication\Backup\Initialize-VeeamToolkit.ps1"
#Validate any parameters
$vmentity = Find-VBRViEntity -Name $VM
if ($vmentity -eq $null)
{
Write-Host "VM: $VM not found" -ForegroundColor "red"
exit
}
if (-Not (Test-Path $Destination))
{
Write-Host "Destination: $vmname not valid" -ForegroundColor "red"
exit
}
if ($DisableQuiesce -eq $true)
{
Start-VBRZip -Entity $vmentity -Folder $destination -Compression $Compression -AutoDelete $Autodelete -DisableQuiesce
}
else
{
Start-VBRZip -Entity $vmentity -Folder $destination -Compression $Compression -AutoDelete $Autodelete
}
However, the sript on this page only supports backing up a single VM. I could create many of these scripts, but having a single script that loops through the VMs would be preferred.
I suppose this is as easy as looping through all the VMs, but as I have no experience powershell scripts, nor with Veeam, I am looking for some help/assitance in modifying the script to backup all VMs. There are some talks about this in the comments on that page, but it appears the blog post have been updated since, so it does not directly apply.
For instance something like this:
(get-vm -ComputerName YOURSERVERFQDN | foreach { $_.Name }) -join "`",`"" | Tee-Object -Variable VMNames | Out-Null
A bonus would be adding some sort of email notification on failure, but that's a little outside the topic of this question.
Resurrecting an old question, but apparently the Q had a number of views, so I thought I should share the final version of the script that I had working. This is based on a different version of the original script I found somewhere, modified for my purposes.
It is not super-elegant, but it gets the job done, and it sends some handy error messages by email if it fails.