-
Notifications
You must be signed in to change notification settings - Fork 47
xRDConnectionBrokerHAMode
dscbot edited this page Oct 15, 2025
·
1 revision
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| ClientAccessName | Key | String | Specifies the FQDN of client access name. | |
| DatabaseConnectionString | Required | String | Specifies the primary connection string to the database. | |
| ConnectionBroker | Write | String | Specifies the FQDN of a server to host the RD Connection Broker role service. | |
| DatabaseFilePath | Write | String | Specifies the database file path of SQL Server. | |
| DatabaseSecondaryConnectionString | Write | String | Specifies the secondary connection string to the database. |
This resource is used to configure the Remote Desktop Connection Broker HA.
This example shows how to configure HA mode on a connection broker.
configuration Example
{
Import-DscResource -ModuleName 'xRemoteDesktopSessionHost'
node localhost {
xRDConnectionBrokerHAMode MyGateway {
ConnectionBroker = 'RDCB1'
DatabaseConnectionString = 'DRIVER=SQL Server Native Client 11.0;SERVER=RDDB1;Trusted_Connection=Yes;APP=Remote Desktop Services Connection Broker;Database=RDS'
ClientAccessName = 'rdsfarm.contoso.com'
}
}
}