Changeing the name of the Connection Broaker

Changeing the name of the Connection Broaker

A couple of weeks back, i had to change the name of a Connection Broaker service due to external certificate change. Not much documentation was found online so i’ll provide the commands in powershell/wmi that was needed to fix it.

wmi -Class "Win32_RDMSDeploymentSettings" -Namespace "root\CIMV2\rdms" -Name "GetStringProperty" -ArgumentList @("DeploymentRedirectorServer") -ComputerName localhost -Authentication PacketPrivacy -ErrorAction Stop
iwmi -Class "Win32_RDMSDeploymentSettings" -Namespace "root\CIMV2\rdms" -Name "SetStringProperty" -ArgumentList @("DeploymentRedirectorServer","ts01.domainname.com") -ComputerName localhost -Authentication PacketPrivacy -ErrorAction Stop