Home Lab · Active Directory

Active Directory Lab Setup

Built a virtualized Windows Server environment to practice enterprise AD administration — from domain creation to Group Policy deployment.

Tools Used VirtualBox, Windows Server 2022, Windows 10
Duration 3 weekends
Difficulty Intermediate

Overview

Most entry-level IT support roles require some familiarity with Active Directory — but without enterprise access, it's hard to build that experience. This project replicates a small business AD environment using free virtualization tools.

Environment Setup

I used VirtualBox to create two VMs on my personal laptop:

What I Built

1. Domain Controller Configuration

Promoted the Windows Server VM to a Domain Controller and created the domain corp.alexlab.local. Configured DNS to point to the DC's static IP.

PS C:\> Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools

Success: Active Directory Domain Services installed

PS C:\> Install-ADDSForest -DomainName "corp.alexlab.local"

# Promoted server to DC, set DSRM password, rebooted

2. Organizational Unit Structure

Designed an OU hierarchy mimicking a small company with separate departments:

3. Group Policy Objects

Created and linked three GPOs to practice common enterprise policies:

4. Client Domain Join

Joined the Windows 10 VM to the domain, logged in as a domain user, and verified GPOs applied correctly using gpresult /r.

✓ Key Outcomes

← Back to Portfolio