Skip to main content
Jorge Bernhardt Jorge Bernhardt
  1. Posts/

How to install the PowerShell Active Directory Module in Windows Server

·142 words·1 min· 100 views · 5 likes ·
Add-WindowsFeature Get-WindowsFeature Microsoft Microsoft Windows

Jorge here again. In this post, I want to show how to install the Active Directory Module for PowerShell. The AD module is already installed on domain controllers on Windows Server but on member servers, you can add the module as a feature in Server Manager or using PowerShell.

Server Manager Workaround>

Server Manager Workaround #

  1. Start Server Manager.
  2. Click Manage » Add Roles and Features.
  3. Click Next until you reach Features.
  4. Role Administration Tools » AD DS and AD LDS Tools.
  5. Enable Active Directory module for Windows PowerShell.

Active Directory module for Windows PowerShell.

PowerShell Workaround>

PowerShell Workaround #

Run the following PowerShell command as administrator:

Add-WindowsFeature RSAT-AD-PowerShell

Add-WindowsFeature
Then you can verify it with the Get-WindowsFeature cmdlet.

Get-WindowsFeature -Name RSAT-AD-PowerShell

Get-WindowsFeature

Thanks for reading my post. I hope you find it useful.

If you want to know more about the AD Module for PowerShell, check out this link.