-
Notifications
You must be signed in to change notification settings - Fork 47
RDLicenseConfiguration
dscbot edited this page Jan 21, 2026
·
1 revision
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| ConnectionBroker | Key | String | ||
| LicenseMode | Required | String |
PerUser, PerDevice, NotConfigured
|
|
| LicenseServer | Write | StringArray[] |
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 'RemoteDesktopServicesDsc'
node localhost {
RDLicenseConfiguration MyLicenseServer {
ConnectionBroker = 'connectionbroker.server.fqdn'
LicenseMode = 'PerUser'
LicenseServer = 'license.server.fqdn'
}
}
}