PowerShell script exchange
Post Reply
Maieu_san
Service Provider
Posts: 19
Liked: 2 times
Joined: Oct 05, 2011 6:28 am
Full Name: Steven Maieu
Contact:

Get list of VMs out of Cloud backup job

Post by Maieu_san »

Hi,

I'm trying to list all VMs that are under backup, in the Cloud, using this script:
foreach($job in Get-VBRJob) { Write-Host "Job:", $job.Name; $job.GetObjectsInJob() | foreach { $_.Location } }

For a normal job (non cloud) this works, because you specify the VMs as object in the job.
For a cloud job, you specify the organization, and the result is, as expected, the specified organization with the query specified.
But what I would like is to get a list of all the VMs under the organization.

Is there any way to fetch the data I require?

Thanks in advance!
veremin
Product Manager
Posts: 20270
Liked: 2252 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:

Re: Get list of VMs out of Cloud backup job

Post by veremin »

If you're using container, instead of individual objects, then, the querying process should be conducted in two steps.

1) Get the job object, using Get-VBRJobObject commadlet (Organization, in your case).
2) Get VMs that are located within the given organization, using Find-VBRvCloudEntity commandlet.

Thanks.
Post Reply

Who is online

Users browsing this forum: No registered users and 21 guests