Adding desktop pool entitlements

Entitling is the act of granting AD users or groups access to the Horizon pools. In this section, we will review how to entitle both individual users as well as AD security groups. The following list shows how entitlements can be implemented:

  • The following Add-PoolEntitlement command will entitle the Engineering_Horizon_Users group to the EngineeringLC1 desktop pool:
    Add-PoolEntitlement -Pool_id EngineeringLC1 -sid (Get-User -Name 
“Engineering_Horizon_Users”).sid
  • To entitle individual users, simply provide the first and last name of the user, as shown in the following code:
    Add-PoolEntitlement -Pool_id EngineeringLC1 -sid (Get-User -Name 
“Charles Xavier”).sid

The Get-User command accepts wildcards, but be careful while using them, as the wrong user might be returned. If in doubt, use the Get-User command by itself to verify that you are selecting the correct user.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.137.180.32