Trigger KCC on all Domain Controllers
If you need to ensure all DC's have built the latest topology, a quick powershell one-liner (that's powershell v1 and v2).
Check out all the DC Methods that can be run in this way.
If you need to ensure all DC's have built the latest topology, a quick powershell one-liner (that's powershell v1 and v2).
foreach ($dc in [System.DirectoryServices.ActiveDirectory.domain]::getcurrentdomain().FindAllDomainControllers()){$dc.CheckReplicationConsistency()}
Check out all the DC Methods that can be run in this way.
Comments
Post a Comment