Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
View all AD properties
March 15, 2017
Q. How can I view all properties of an AD object using PowerShell?
A. There are numerous PowerShell cmdlets however normally they only return certain properties. To return all properties use the -properties * parameter or change to return only certain properties. For example:
$user | Get-ADUser -properties *
$user | Get-ADUser -Properties name, sAMAccountName, PasswordLastSet
You May Also Like