Active Directory Module installation

Im trying to use the active directory activities on the process studio, but I’m getting this error message as a result.

I believe it is necessary to install Active Directory PowerShell Module

Run the following steps:

1 - Run Powershell as Administrator
2 - Verify that the module is already installed: Get-WindowsFeature RSAT-AD-PowerShell
3 - To install: Install-WindowsFeature RSAT-AD-PowerShell
4 - After installation, check the version and if it is imported without errors:
Import-module activedirectory
Get-Module

1 Like

Thanks! it worked!

I am having also this issue. How do I use a PowerShell script built using the Windows Active Directory module as an Active Roles Server Script Module? I am trying this I am getting an error that “GEt-ADGroupMember” is not recognized. I think this is because it does not recognize the cmdlet without the ActiveDirectory module.

You need to install the AD module and execute the scripting with a remote session in powershell.