The Active Directory replication status is about the first thing I check whenever I enter a project at a new customer.
Why? You wouldn’t believe the problems they can cause and the time it can take to discover AD replication is the cause…
So, here’s a PowerShell oneliner to list all AD replication errors:
1 |
ConvertFrom-Csv -InputObject (repadmin.exe /showrepl * /csv) | where {$_.showrepl_columns -ne 'showrepl_INFO'} |