This little script will check if any of your jobs are disabled on Veeam;

This can be quite handy if you planning to check a list of servers.

Code:

Add-PSSnapin -Name VeeamPSSnapIn -ErrorAction SilentlyContinue
Get-VBRJob | where {$_.IsScheduleEnabled -eq $False} | select name, Description

It will display something like this in WindosPowershell :

2018_11_07_14_35_44_F2SVRBKP02.png