Hello,
I am currently looking for a way to generate a report / extract of the backup execution status for 1 machine for the entire last year.
Is there a way to do this using Powershell, SQL or something else?
Thanks for your help
Hello,
I am currently looking for a way to generate a report / extract of the backup execution status for 1 machine for the entire last year.
Is there a way to do this using Powershell, SQL or something else?
Thanks for your help
Best answer by JMeixner
So, I have found it finallyβ¦ π
To get all backup sessions of the job in which the VM is included:
$reportstartdate = (Get-Date).AddYears(-1)
$reportstopdate = Get-Date
$VBRJob = "TestJob"
$sessions = get-vbrbackupsession | where { (($_.CreationTime -ge $reportstartdate -and $_.CreationTime -le $reportstopdate) -and ($_.JobName -eq $VBRJob)) } | sort Endtime
$sessions | select JobName, Endtime, Result
The get-vbrbackupsession takes some time to complete on a server with many backupjobs...
You can include the select statement in the first command, I did it in a separate step, because I need the complete data structure for the next step.
Output:
JobName EndTime Result
------- ------- ------
TestJob 23.02.2022 23:36:23 Success
TestJob 24.02.2022 23:36:13 Success
TestJob 25.02.2022 23:35:34 Success
TestJob 26.02.2022 23:35:33 Success
TestJob 27.02.2022 23:36:35 Success
TestJob 28.02.2022 23:37:18 Success
TestJob 01.03.2022 23:39:14 Success
TestJob 02.03.2022 23:39:51 Success
...
TestJob 17.02.2023 23:33:42 Success
TestJob 18.02.2023 23:36:44 Success
TestJob 19.02.2023 23:33:32 Success
TestJob 20.02.2023 23:33:37 Success
TestJob 21.02.2023 23:36:46 Success
TestJob 22.02.2023 23:33:56 Success
To get the information about a specific VM inside the back session:
$VMName = "TestVM"
foreach ($session in ($sessions | ?{$_.IsRetryMode -eq $false}))
{
$backupInfo = get-vbrtasksession -session $session | where { $_.Name -eq $VMName }
$output = $session.Jobname+" "+$session.Endtime+" "+$backupinfo.Name+" "+$backupinfo.Status
echo $output
}
Output:
TestJob 02/23/2022 23:36:23 TestVM Success
TestJob 02/24/2022 23:36:13 TestVM Success
TestJob 02/25/2022 23:35:34 TestVM Success
TestJob 02/26/2022 23:35:33 TestVM Success
TestJob 02/27/2022 23:36:35 TestVM Success
TestJob 02/28/2022 23:37:18 TestVM Success
TestJob 03/01/2022 23:39:14 TestVM Success
TestJob 03/02/2022 23:39:51 TestVM Success
...
TestJob 02/17/2023 23:33:42 TestVM Success
TestJob 02/18/2023 23:36:44 TestVM Success
TestJob 02/19/2023 23:33:32 TestVM Success
TestJob 02/20/2023 23:33:37 TestVM Success
TestJob 02/21/2023 23:36:46 TestVM Success
TestJob 02/22/2023 23:33:56 TestVM Success
There is many more information for the backup and task sessions, just play around with it to get all the information you need.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.