Posted April 10, 20205 yr Hi There, Is there an way to create an Report with all (active) users from the AD via Pulseway?
April 14, 20205 yr 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 April 15, 20205 yr by AC_Martin_J
Create an account or sign in to comment