Hi,
It seems we need to change the management group of the agents. We can try the following PowerShell script (in the agent machine) to see if it helps.
$mma1 = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma1.RemoveManagementGroup('test02')
if ($? -eq 0)
{
write-host "management group test02 was removed!"
}
$mma1.AddManagementGroup('test03' , 'om22.sc.com' , 5723)
if ($? -eq 0)
{
write-host "management group test03 was added!"
}
$mma1.ReloadConfiguration()
Regards,
Alex