-
Notifications
You must be signed in to change notification settings - Fork 47
RDServer
dscbot edited this page Jan 21, 2026
·
1 revision
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| Role | Key | String |
RDS-Connection-Broker, RDS-Virtualization, RDS-RD-Server, RDS-Web-Access, RDS-Gateway, RDS-Licensing
|
|
| Server | Key | String | ||
| ConnectionBroker | Write | String | ||
| GatewayExternalFqdn | Write | String |
This resource is used to configure the Remote Desktop Server.
This example shows how to join a RDSH host to a deployment.
configuration Example
{
Import-DscResource -ModuleName 'RemoteDesktopServicesDsc'
node localhost {
RDServer RemoteDesktopSessionHost {
ConnectionBroker = 'connectionbroker.server.fqdn'
Server = 'sessionhost.server.fqdn'
Role = 'RDS-RD-Server'
}
}
}