My IT & Cybersecurity Blog

Labs, walkthroughs, certifications, and projects on my learning journey

View the Project on GitHub

Lab: Setting up Active Directory Domain Services

Lab Environment

Objective

Install and configure Active Directory Domain Services (AD DS) to create a domain controller for a test network.

Steps Taken

  1. Downloaded the Windows Server 2022 ISO from Microsoft Evaluation Center
  2. Created a new VM in VirtualBox and installed the Server Core edition
  3. Configured hostname and static IP
  4. Installed the AD DS role with: ```powershell Install-WindowsFeature AD-Domain-Services

  5. Promoted the server to a domain controller: ```powershell Install-ADDSForest -DomainName “mico.local”

  6. Rebooted and verified AD installation with: ```powershell Get-WindowsFeature AD-Domain-Services

Issues Faced

Skills Practiced