Installation steps

The following steps demonstrate how we can add a new child domain to the existing domain:

  1. Log in to the server as a local administrator.
  2. As a first step, verify the static IP address allocation by using ipconfig /all.
  3. Launch the PowerShell console as an administrator.
  4. Install the AD DS role service:
        Install-WindowsFeature -Name AD-Domain-Services         -IncludeManagementTools
  1. 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 ...

Get Mastering Active Directory now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.