June 2017
Beginner to intermediate
742 pages
18h 29m
English
Data replication is crucial for a healthy AD environment. For a given domain controller, we can find its inbound replication partners using this:
Get-ADReplicationPartnerMetadata -Target REBEL-SRV01.rebeladmin.com
The preceding command provides a detailed description for the given domain controller, including last successful replication, replication partition, server, and so on.
We can list all the inbound replication partners for the given domain using the following:
Get-ADReplicationPartnerMetadata -Target "rebeladmin.com" -Scope Domain
In the preceding command, the scope is defined as the domain. This can be changed to the forest to get a list of the inbound partners in the forest. The output is based on the default partition. ...