I'm having issues finding our default resource pool "Resources" using the PowerShell commands in 8.0. My issue is similar to the one reported here http://forums.veeam.com/powershell-f26/ ... 19146.html but the resolution posted there doesn't work for me.
Here's what I'm trying:
Code: Select all
PS >Find-VBRViResourcePool -Server "esxi-host-name" -Name "Resources"
But if I try using Find-VBRViEntity as recommended:
Code: Select all
PS >Find-VBRViEntity -ResourcePools -Server "esxi-host-name" -Name "Resources"
If I specify the vCenter server:
Code: Select all
PS > Find-VBRViEntity -ResourcePools -Server "vcenter-server" -Name "Resources"
ConnHost : Veeam.Backup.Core.Common.CHost
Type : ResourcePool
Reference : resgroup-35515
Id : 2b76455a-8337-44ae-9e33-8a1d197fef87_resgroup-35515
Name : Resources
Path : vcenter-server\datacenter-name\Resources
ConnHost : Veeam.Backup.Core.Common.CHost
Type : ResourcePool
Reference : resgroup-21
Id : 2b76455a-8337-44ae-9e33-8a1d197fef87_resgroup-21
Name : Resources
Path : vcenter-server\datacenter-name\cluster-name\Resources
How do I get it to only return a single result for a cluster?
Thanks.