Get RD License Server Information from a Citrix Session Host
In order to host Citrix sessions on a Windows Server Operating System, Microsoft Remote Desktop License Servers and having the Citrix VDAs consume licenses from those servers, are required.
The normal configuration is to do so in Group Policy, here are a few ways to validate that the configuration has taken effect.
LSDIAG.MSC:
Most comprehensive, but requires the feature to be installed.
Powershell Commands:
$obj = gwmi -namespace "Root/CIMV2/TerminalServices" Win32_TerminalServiceSetting $obj.GetSpecifiedLicenseServerList() $obj.LicensingName $obj.GetRegisteredLicenseServerList() | select -ExpandProperty RegisteredLSList
Get list of registered RD servers from Active Directory
C:\> dsquery * -filter "(&(CN=TermServLicensing)(objectClass=serviceConnectionPoint))"
No comments