Home Lab · Active Directory
Built a virtualized Windows Server environment to practice enterprise AD administration — from domain creation to Group Policy deployment.
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.
I used VirtualBox to create two VMs on my personal laptop:
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
Designed an OU hierarchy mimicking a small company with separate departments:
Created and linked three GPOs to practice common enterprise policies:
Joined the Windows 10 VM to the domain, logged in as a domain user, and verified GPOs applied correctly using gpresult /r.