Enumerating User Properties
PowerView
Find description attribute for an user that matches with a specific keyword
Find-UserField -SearchField Description -SearchTerm "admin"Get all properties for all users in current domain
Get-UserPropertyGet all properties for all users in another domain
Get-UserProperty -Domain <DOMAIN NAME>Get "Description" property for all users in current domain
Get-UserProperty -Properties descriptionGet "Description" property for all users in another domain
Get-UserProperty -Properties description -Domain <DOMAIN NAME>Get "Admin Count" property for all users in current domain
Get-UserProperty -Properties admincountGet "Admin Count" property for all users in another domain
Get-UserProperty -Properties admincount -Domain <DOMAIN NAME>Get "Bad Password Time" property for all users in current domain
Get-UserProperty -Properties badpasswordtimeGet "Bad Password Time" property for all users in another domain
Get-UserProperty -Properties badpasswordtime -Domain <DOMAIN NAME>Get "Bad Password Count" property for all users in current domain
Get-UserProperty -Properties badpwdcountGet "Bad Password Count" property for all users in another domain
Get-UserProperty -Properties badpwdcount -Domain <DOMAIN NAME>Get "Distinguished Name" property for all users in current domain
Get-UserProperty -Properties distinguishednameGet "Distinguished Name" property for all users in another domain
Get-UserProperty -Properties distinguishedname -Domain <DOMAIN NAME>Get "Last Logoff" property for all users in current domain
Get-UserProperty -Properties lastlogoffGet "Last Logoff" property for all users in another domain
Get-UserProperty -Properties lastlogoff -Domain <DOMAIN NAME>Get "Last Logon" property for all users in current domain
Get-UserProperty -Properties lastlogonGet "Last Logon" property for all users in another domain
Get-UserProperty -Properties lastlogon -Domain <DOMAIN NAME>Get "Member Of" property for all users in current domain
Get-UserProperty -Properties memberofGet "Member Of" property for all users in another domain
Get-UserProperty -Properties memberof -Domain <DOMAIN NAME>Get "Password Last Set" property for all users in current domain
Get-UserProperty -Properties pwdlastsetGet "Password Last Set" property for all users in another domain
Get-UserProperty -Properties pwdlastset -Domain <DOMAIN NAME>Last updated