How can I update the OU settings of an AD Connector ?
Best Answers
-
damon_mulligan Cireson Consultant Advanced IT Monkey ✭✭✭You have to create a new AD Connector, sync it fully. Disable the original connector, then after a few days/syncs, then delete the original connector. There is very little you can edit in Connectors after they are created.5
-
Geoff_Ross Cireson Consultant O.G.They can be edited via PowerShell via native CMLets so it will be supported. You need to
$Connector = Get-SCSMConnector | Where-Object {$_.Displayname -eq ""}
Then update the $Connector object as you need. Then save it with$Connector | Set-SCSMConnector
Good luck7
Answers