August 2019
Intermediate to advanced
786 pages
20h 22m
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 during login using AD integrated applications and services. The replication is dependent on many different factors, such as the replication schedule and intra-site connectivity. Sometimes, however, we need to force the replication that is required to force 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}) ...