Hello,
It’s possible to get job status (warning, failed or success) using powershell script?
Hello,
It’s possible to get job status (warning, failed or success) using powershell script?
Best answer by hs08
Super…., it’s work by execute
Get-VBRJob | Where-Object {$_.JobType -eq “Backup”} | Select Id, Name, JobType, @{n=”Last Result”;e={$_.GetLastResult()}}
Comment
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.