August 2019
Intermediate to advanced
786 pages
20h 22m
English
When the first domain controller is introduced into the infrastructure, the system creates its first site as Default-First-Site-Name. This can be changed based on the given requirements. We can review the existing site's configuration using the following PowerShell cmdlet:
Get-ADReplicationSite -Filter *
It will list the site's information for the AD infrastructure.
Our example only has the default AD site. As this is the first step, we need to change it to a meaningful name so we can assign objects and configurations accordingly. In order to do that, we can use the Rename-ADObject cmdlet:
Rename-ADObject -Identity "CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=rebeladmin,DC=com" -NewName "LondonSite"
The preceding ...