Jump to content
Pulseway 9.14 🔥

Featured Replies

Posted

Hi There,

Is there an way to create an Report with all (active) users from the AD via Pulseway?

You can run the following script on a domain controller to see all enabled users using Powershell in Pulseway: 

get-aduser -filter * -properties samaccountname, enabled, givenname, surname | where {$_.enabled -eq $true} | select -property samaccountname, givenname, surname | sort-object -property samaccountname

 

The output will be all users in AD where the enabled-attribute is set to true (ie all active users), and they will be presented in alphabetical order sorted by their username.

Edited by AC_Martin_J

Create an account or sign in to comment