Summary: Learn how to use the Windows PowerShell Get-Member cmdlet to see all the properties of an Active Directory user account.
How can you use the Get-Member cmdlet to see all of the properties of a user account in Active Directory?
Use the Get-ADUser cmdlet from the ActiveDirectory module, and use a wildcard for the value of the Properties parameter. Pipe the result to the Get-Member cmdlet.
Get-ADUser -Filter * -Properties * | Get-Member -MemberType property