June 2017
Beginner to intermediate
742 pages
18h 29m
English
Once an object is added to a domain controller, it needs to be replicated to all other domain controllers. Otherwise, users will face issues on login, using AD integrated applications and services. The replication is dependent on many different factors, such as the replication schedule and intra-site connectivity. However, sometimes, it is required to force the replication between domain controllers:
## Replicate Object to From Domain Controller to Another ##$myobject = Read-Host 'What is your AD Object Includes ?'$sourcedc = Read-Host 'What is the Source DC ?'$destinationdc = Read-Host 'What is the Destination DC ?'$passobject = (Get-ADObject -Filter {Name -Like $myobject})Sync-ADObject -object $passobject ...