We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PerUser
PerDevice
NotConfigured
This resource is used to configure the Remote Desktop License Configuration.
This example shows how to ensure that the Remote Desktop Licensing is setup in the correct mode.
configuration Example { Import-DscResource -ModuleName 'xRemoteDesktopSessionHost' node localhost { xRDLicenseConfiguration MyLicenseServer { ConnectionBroker = 'connectionbroker.server.fqdn' LicenseMode = 'PerUser' LicenseServer = 'license.server.fqdn' } } }
Home