Skip to content

Active Directory Services & User Creation

This lab covers the end-to-end deployment of an enterprise directory services infrastructure on Windows Server. The deployment is divided into three key phases:

  1. AD DS Role Installation: Installing the binaries and management tools for Active Directory Domain Services.
  2. Domain Controller Promotion: Configuring the forest, establishing the root domain rajkumar.local, and promoting the server.
  3. OU & User Provisioning: Creating a structured Organizational Unit (CST170) and provisioning 10 active directory user accounts.

Lab Overview Banner


Phase 1: Active Directory Domain Services Role Installation

Section titled “Phase 1: Active Directory Domain Services Role Installation”

In this phase, we install the Active Directory Domain Services (AD DS) role and its associated remote administration tools onto the local server using the Server Manager dashboard.

StepActionDescription
1Launch Role WizardStart the “Add Roles and Features” wizard from Server Manager.
2Select Installation TypeChoose “Role-based or feature-based installation”.
3Select Target ServerIdentify and select the destination server from the pool.
4Select Server RolesSelect the “Active Directory Domain Services” role.
5Add FeaturesAccept the required administrative and command-line features.
6Review FeaturesVerify default features (such as Group Policy Management).
7Review AD DS InfoRead the deployment guidelines and DNS prerequisites.
8Confirm SelectionsConfigure automatic restart settings and verify changes.
9Monitor ProgressWatch the progress bar as files are deployed.
10Complete InstallationVerify success and close the wizard to begin promotion.

Open the Server Manager dashboard, click on Manage in the upper-right corner, and select Add Roles and Features to launch the configuration wizard.

Step 1 - Launch Wizard

Choose Role-based or feature-based installation and click Next to deploy the role onto a single server instance.

Step 2 - Installation Type

Select the target server from the server pool. Verify that the correct server name and local IP address are highlighted.

Step 3 - Server Selection

Step 4: Check Active Directory Domain Services

Section titled “Step 4: Check Active Directory Domain Services”

In the list of server roles, select the checkbox for Active Directory Domain Services.

Step 4 - Role Selection

A pop-up prompt will display the dependent features required for AD DS management (such as AD DS Tools, AD Administrative Center, and PowerShell modules). Click Add Features to proceed.

Step 5 - Feature Confirmation

Verify that the default features are selected (including Group Policy Management). Click Next without making additional changes.

Step 6 - Features Review

Review the information screen detailing what AD DS does, noting the recommendation to set up at least two domain controllers for redundancy in production environments.

Step 7 - AD DS Info

Verify all selected roles and features. Optionally check the option to Restart the destination server automatically if required, then click Install.

Step 8 - Confirm Selections

Wait for the progress bar to complete. The wizard will show the status of the binary deployment.

Step 9 - Installation Progress

Once the progress bar indicates Installation succeeded, click Close. Notice the warning flag in Server Manager prompting for post-deployment configuration.

Step 10 - Installation Complete


Phase 2: Promote the Server as a Domain Controller

Section titled “Phase 2: Promote the Server as a Domain Controller”

Once the AD DS role files are installed, the server must be promoted to a Domain Controller to establish the new Active Directory forest.

StepConfiguration WindowConfiguration Details
11Deployment ConfigurationSelect “Add a new forest” and define the root domain rajkumar.local.
12Domain Controller OptionsSet functional levels, enable DNS/GC, and set a secure DSRM password.
13DNS OptionsReview the DNS delegation warning (safe to ignore for a new forest).
14Additional OptionsConfirm the auto-generated NetBIOS name: RAJKUMAR.
15Database PathsDefine paths for the NTDS database, log files, and SYSVOL folder.
16Review OptionsReview the script and configuration parameters.
17Prerequisites CheckPerform and pass the system readiness checks.
18Installation & PromotionInitiate the promotion; the server will reboot automatically.
19Domain Sign-inLog back in using the new domain credentials: RAJKUMAR\Administrator.
20Service VerificationOpen the management tools to verify active directory health.

Click the notification flag in Server Manager and select Promote this server to a domain controller. In the deployment configuration wizard, select Add a new forest and enter rajkumar.local as the Root domain name.

Step 11 - Deployment Config

Step 12: Configure Domain Controller Options

Section titled “Step 12: Configure Domain Controller Options”

Keep the Forest and Domain functional levels set to Windows Server 2016 (or your current version). Ensure that Domain Name System (DNS) server and Global Catalog (GC) are checked, then specify a secure Directory Services Restore Mode (DSRM) password.

Step 12 - DC Options

The wizard will display a warning that a delegation for this DNS server cannot be created. This is expected because we are creating a new root domain with no parent infrastructure. Click Next to bypass.

Step 13 - DNS Options

The wizard will automatically determine the NetBIOS domain name. Verify that it is set to RAJKUMAR and click Next.

Step 14 - NetBIOS Name

Confirm the default file storage locations for the AD DS database, log files, and SYSVOL. Keep them as C:\Windows\NTDS and C:\Windows\SYSVOL for standard configurations.

Step 15 - Folder Paths

Review the configuration summary. You can click View Script to export the equivalent PowerShell script for automated installations. Click Next to continue.

Step 16 - Review Selection

The wizard will run prerequisite checks to ensure the server is ready for promotion. Once the checks pass successfully, click Install.

Step 17 - Prerequisite Check

The wizard will configure the directory services, partition database, and set security configurations. The server will automatically restart upon completion.

Step 18 - Installation

After the reboot, the login screen will show the domain prefix. Enter the administrator credentials to log in as RAJKUMAR\Administrator.

Step 19 - Domain Sign-In

Open Server Manager and verify that AD DS and DNS services are running and showing green/healthy status indicator lights.

Step 20 - Service Verification


Phase 3: Create User Accounts using Active Directory Users and Computers

Section titled “Phase 3: Create User Accounts using Active Directory Users and Computers”

To organize resources and user accounts, we create a custom Organizational Unit (OU) and provision 10 user accounts within it.

Step 21: Create the Organizational Unit (OU)

Section titled “Step 21: Create the Organizational Unit (OU)”
  1. Open the Active Directory Users and Computers console from Tools.
  2. Right-click the root domain rajkumar.local, select New, and click Organizational Unit.
  3. Name the new OU CST170 and click OK.

Step 21 - OU Creation

  1. Inside the CST170 OU, right-click the empty space, select New, and click User.
  2. Create 10 user accounts (e.g. User1 to User10, or custom-named accounts) by entering their First Name, Last Name, and User Logon Name.
  3. Define secure passwords for each account, configure logon policies (such as forcing a password change at first logon or setting passwords to never expire), and click Finish.

Step 22 - User Accounts Created