Skip to main content

Trigger KCC on all Domain Controllers

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). 

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