- 
                Notifications
    You must be signed in to change notification settings 
- Fork 46
xRDServer
        dscbot edited this page Oct 15, 2025 
        ·
        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 'xRemoteDesktopSessionHost'
    node localhost {
        xRDServer RemoteDesktopSessionHost {
            ConnectionBroker = 'connectionbroker.server.fqdn'
            Server           = 'sessionhost.server.fqdn'
            Role             = 'RDS-RD-Server'
        }
    }
}