Aşağıdaki komut ile bir Domain Controller ya da Workstatioın üzerinden PowerShell üzerinden çalıştırarak domain/forest seviyesinde replikasyonlar hakkında bilgi almanızı sağlar. Komutu çalıştırabilmek için Admin haklarına sahip olmanız gerekiyor. Ayrıca Active Directory Powershell Modülü veya RSAT gerektirir.
# Check Replication for the default partition in the domain Get-ADReplicationPartnerMetadata -Target “$env:userdnsdomain” -Scope Domain | Select-Object Server, LastReplicationAttempt, LastReplicationSuccess
#Check Replication for the default partition in the forest Get-ADReplicationPartnerMetadata -Target “$env:userdnsdomain” -Scope Forest | Select-Object Server, LastReplicationAttempt, LastReplicationSuccess