As a workaround i perform the recompose with powershell / powercli / VMware.HV.Helper : start-HVPool -Recompose -Pool $pool -LogoffSetting WAIT_FOR_LOGOFF -Vcenter $vcenter -ParentVM $ParentVM...
See more...
As a workaround i perform the recompose with powershell / powercli / VMware.HV.Helper : start-HVPool -Recompose -Pool $pool -LogoffSetting WAIT_FOR_LOGOFF -Vcenter $vcenter -ParentVM $ParentVM -SnapshotVM $Snapshot Since then no longer problems with the global entitlements.
I have a user who is member of a Global Entitlement but when she tries to log in the following message appears: User ........ has authenticated, but is not entitled to any Pools This occured su...
See more...
I have a user who is member of a Global Entitlement but when she tries to log in the following message appears: User ........ has authenticated, but is not entitled to any Pools This occured suddenly. It has worked since we upgraded to HV 7.4 a several month ago. I've tried several global entitlements. No success. She only gets a desktop when i entitle her directly to a pool.
This works for me: (Use VMware.HV.Helper.) # --- Connnect to Horizon API Service --- $HVserver1 = Connect-HVServer -server <COMPUTERNAME> -user <USERNAME>-password <PASSWORD> -domain <DOMAI...
See more...
This works for me: (Use VMware.HV.Helper.) # --- Connnect to Horizon API Service --- $HVserver1 = Connect-HVServer -server <COMPUTERNAME> -user <USERNAME>-password <PASSWORD> -domain <DOMAIN> $ViewAPI = $global:DefaultHVServers[0].ExtensionData $Assignments = @() $Desktops = Get-HVMachine -PoolName <POOLNAME> ForEach ($desktop in $desktops) { If($desktop.base.user) { $User = ($ViewApi.AdUserOrGroup.AduserOrGroup_Get($desktop.base.user)).base.LoginName } Else { $User = ' '} $Assignments += [PSCUSTOMOBJECT] @{ Desktop = $desktop.base.name User = $user } } $Assignments | sort desktop --------------------------------------------------------------------------------------------------------- Was it helpful? Let us know by completing this short survey here.