Active Directory Domain Services (AD DS) allows you to
create and manage a domain-based network. Here’s how to install and configure
it on Windows Server 2019.
📦 Step 1: Install AD DS
Role
✅ Using Server Manager (GUI)
- Open Server
Manager
- Click Manage
> Add Roles and Features
- In the
Before You Begin screen, click Next
- Choose
Role-based or feature-based installation > click Next
- Select
your server > click Next
- Under Server
Roles, check Active Directory Domain Services
- Click
Add Features if prompted
- Click Next
until the Confirmation page
- Click Install
- Wait
for installation to finish, then click Close
💻 Using PowerShell
#powershell
⚙️ Step 2: Promote the Server to
a Domain Controller
✅ Using Server Manager (GUI)
- After
installation, click Promote this server to a domain controller
(appears in Server Manager)
- Choose
one of the following:
- Add
a new forest (if setting up a brand-new domain)
- Add
a domain controller to an existing domain (if joining an existing
domain)
- If
creating a new domain, enter the Root domain name (e.g., example.local)
- Set Directory
Services Restore Mode (DSRM) password
- Click Next
through the remaining steps (leave default settings if unsure)
- Click Install
- The
server will automatically reboot after promotion
💻 Using PowerShell (New
Forest Example)
#Powershell
Install-ADDSForest -DomainName "example.local"
-DomainNetbiosName "EXAMPLE" -SafeModeAdministratorPassword
(ConvertTo-SecureString "YourDSRMpassword" -AsPlainText -Force)
-Force
✅ After Installation
- Log in
using the domain credentials (e.g., EXAMPLE\Administrator)
- Use Active
Directory Users and Computers to manage users, groups, and OUs
- Use DNS
Manager to configure DNS settings if needed
🎯 Summary
|
Task |
Method |
|
Install AD DS Role |
Server Manager or PowerShell |
|
Promote to Domain Controller |
Wizard in Server Manager or Install-ADDSForest cmdlet |
|
Required Info |
Domain name, DSRM password |
|
Reboot Required? |
✅ Yes |
how to install active directory domain services,
install ad ds windows server 2019,
active directory installation guide,
windows server 2019 active directory setup,
install domain controller windows server 2019,
promote server to domain controller,
ad ds step by step windows server 2019,
configure active directory windows server,
windows server 2019 ad ds tutorial,
setup active directory on windows server,
domain services installation,
install active directory powershell,
windows server create domain controller,
install active directory using server manager,
active directory domain services windows server 2019

0 Comments