Deploy A Read Only Domain Controller
Deploy A Read Only Domain Controller
Install an RODC
I’m not going to outline the entire process here again, but just
the differences when choosing to install an RODC.
Using PowerShell
PowerShell
Install-WindowsFeature –Name AD-Domain-Services -includemanagementtools
1
Install-ADDSDomainController -Credential (Get-Credential) -CriticalReplicationOnly:$false
2
-DomainName $domainName -InstallDNS:$true -LogPath $NTDSpath -DatabasePath $NTDSpath
3
-ReadOnlyReplica:$true -SiteName "Default-First-Site-Name" -SYSVOLPath $SYSVOLpath -Force:
$true
PowerShell
-DenyPasswordReplicationAccountName @("BUILTIN\Administrators", "BUILTIN\Server Operators",
1 "BUILTIN\Backup Operators", "BUILTIN\Account Operators", "AD\Denied RODC Password Replication
Group")
If you exclude the -AllowPasswordReplicationAccountName and -
DenyPasswordReplicationAccountName parameters from the cmdlet, the
default settings will be used.