Quick Links

In past versions of Windows Server, after using the GUI to add the Active Directory binaries to your server, you would use DCPromo to promote your server into a Domain Controller. However, DCPromo was deprecated with the release of Server 2012.

Installing Active Directory on Server 2012

You can still add the binaries through the GUI, but underneath the hood even that is using PowerShell. For that reason we will keep the whole article in PowerShell. To add the binaries simply open a PowerShell Console and run the following:

Add-WindowsFeature -name ad-domain-services –IncludeManagementTools –Restart

image

Once the installation is complete your computer will reboot. We are now ready to install a new domain controller in a new forest, so open a new PowerShell Console. There are three PowerShell commands you can use to promote your server into a DC:

  • Install-ADDSDomainController - Creates a new domain controller in an existing domain.
  • Install-ADDSDomain - Creates a new domain in an existing forest.
  • Install-ADDSForest - Creates a new forest.

Since we don’t already have a forest we will need to use the Install-ADDSForest cmdlet.

Install-ADDSForest –DomainName “corp.howtogeek.com”

image

You will then be prompted for the Restore Mode password and asked to confirm that a server reboot is OK.

image

Now you can go grab a cup of coffee while it sets up your new Domain Controller.

image

Once your server is back up you’re good to go.

image

That’s all there is to it folks. It's easier than ever with PowerShell!