Microsoft Identity Manager
A family of Microsoft products that manage a user's digital identity using identity synchronization, certificate management, and user provisioning.
844 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to pull all the user information containing there corresponding groups information or the OU names from active directory.
I tried using powershell with below query but it didn't work.
get-aduser -identity username -Properties * | select DisplayName, MemberOf, State | export-csv -path c:\temp\export.csv