The following steps demonstrate how we can add a new child domain to the existing domain:
- Log in to the server as a local administrator.
- As a first step, verify the static IP address allocation by using ipconfig /all.
- Launch the PowerShell console as an administrator.
- Install the AD DS role service:
Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools
- After successful role service installation, the next step is to set up the new child domain:
Install-ADDSDomain -Credential (Get-Credential) -ParentDomainName "rebeladmin.com" -NewDomainName "europe" -NewDomainNetbiosName "EUROPE" -DomainMode "WinThreshold" -DomainType "ChildDomain" -CreateDnsDelegation:$true -NoGlobalCatalog:$false -InstallDns:$true ...