• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

get listing of AD users / names

Red Squirrel

No Lifer
How do I go about exporting a list of usernames associated with their actual name, in Active directory? been looking at dsget, dsquery, but can't seem to find a way to get both username and real name. I dont care about the format, as long as it's somewhat parsable.
 
You want the sAMAccountName and displayName attributes. For an OU of user account, you could do something like:

dsquery * ou=blah,dc=domain,dc=com -attr sAMAccountName displayName
 
Back
Top