- Select a category.
License server security group
This policy setting allows you to specify the RD Session Host servers to which a Remote Desktop license server will offer Remote Desktop Services client access licenses (RDS CALs).
You can use this policy setting to control which RD Session Host servers are issued RDS CALs by the Remote Desktop license server. By default, a license server issues an RDS CAL to any RD Session Host server that requests one.
If you enable this policy setting and this policy setting is applied to a Remote Desktop license server, the license server will only respond to RDS CAL requests from RD Session Host servers whose computer accounts are a member of the RDS Endpoint Servers group on the license server.
By default, the RDS Endpoint Servers group is empty.
If you disable or do not configure this policy setting, the Remote Desktop license server issues an RDS CAL to any RD Session Host server that requests one. The RDS Endpoint Servers group is not deleted or changed in any way by disabling or not configuring this policy setting.
Note: You should only enable this policy setting when the license server is a member of a domain. You can only add computer accounts for RD Session Host servers to the RDS Endpoint Servers group when the license server is a member of a domain.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Terminal Server |
| Category | Remote Desktop Services › RD Licensing |
| Applies to | Computer Configuration |
| Supported on | Windows NET |
| Registry Key | [HKLM]SoftwarePoliciesMicrosoftWindows NTTerminal Services |
| Value Name | fSecureLicensing |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftWindows NTTerminal Services]
"fSecureLicensing"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftWindows NTTerminal Services]
"fSecureLicensing"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftWindows NTTerminal Services" -Name "fSecureLicensing" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftWindows NTTerminal Services" -Name "fSecureLicensing" -Value 0 -Type DWord 