PowerShell script exchange
Post Reply
BHB3805
Enthusiast
Posts: 30
Liked: 1 time
Joined: Nov 04, 2011 1:45 pm
Full Name: Dan Andryszak
Contact:

VMs in Job Script Help

Post by BHB3805 »

I am having difficulty in creating a script to list each backup job and the respective VMs in each job.
I know this should be a no-brainer, but I'm struggling.
Any suggestions or script samples?
veremin
Product Manager
Posts: 20284
Liked: 2258 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:

Re: VMs in Job Script Help

Post by veremin »

Hi, Dan, the following script seems to do everything you're after:

Code: Select all

asnp VeeamPSSnapin
Get-VBRJob | ? {$_.jobtype -eq "Backup"} | Select-Object -Property @{N="Job Name";E={$_.name}}, @{N="VMs";E={$_.GetViOijs().name}} | Format-Table
Thanks.
Post Reply

Who is online

Users browsing this forum: No registered users and 15 guests