Quantcast
Viewing all articles
Browse latest Browse all 21975

Pull All User Attributes with PowerShell

Okay, when I go into ADUC and open up the Attribute Editor for a User I see something like 300 attributes. Many are blank or unused, that's fine. I need to pull that full list with Powershell. I don't care whether they are blank or null or whatever, I want a list of every attribute available in my directory. I've tried several different queries with different tools. Get-ADUser is the most comprehensive at 100 attributes returned.

Get-ADUser username -Properties * | Select *
This isn't all of them. For example the "Audio" Attribute doesn't show up. But as soon as I put a value in Audio it does show up. So I know that the CMDLET has access to the attributes it just isn't showing them to me. Is there a flag/switch I'm missing that will show everything? Is there a different CMDLET I should be using?

Thanks much for the help in advance.


Viewing all articles
Browse latest Browse all 21975

Trending Articles