VMware Horizon Community
Daithi_N
Enthusiast
Enthusiast

Get Pool Entitlment

Using the Following Get-HVEntitlement, I'm Trying to get a List of Pool Names with their Entitlements.

At the moment, i'm just pulling out the Group Names but not able to tell which Group belongs to which pool  

is it possible to "Desktop" "Entitlement" as an output ? 

$vms = Get-HVEntitlement -ResourceType Desktop -Type Group

$results = @() #Array

#Loop over each items
foreach($vm in $vms) {

$properties = @{

Group = $vm.Base.DisplayName

0 Kudos
0 Replies