Veeam Backup validation
If you need tool to check your backups made by Veeam Backup and Replication software, you can use this PowerShell script.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Enter here backup name from Veeam Console $NameOfBackup = "00_Infr" # Where is your backups located $BackupDir = "E:\Backups" # Where is your reports located $ReportDir = "C:\TEST" $tool='"C:\Program Files\Veeam\Backup and Replication\Backup\Veeam.Backup.Validator.exe"' $StartDir = pwd set-location $BackupDir $FolderOfFile = $BackupDir + "\$NameOfBackup\" $NameOfFile = $NameOfBackup + ".vbm" $report= $ReportDir + '\' + $NameOfBackup+'_'+("{0:yyyy-MM-dd_HH.mm.ss}" -f (get-date))+'.html' $Parameter = "/backup:$NameOfBackup /format:html report:$report" Invoke-Expression "& $tool $Parameter" cd $StartDir |