Veeam & Powershell; Check if jobs are disabled

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

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.