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 :