Basic Active Directory Query via Powershell

Check User Group membership

Get-ADUser myusername -Properties * | Select MemberOf

Can also use:

MemberOf

PasswordExpired

LockedOut

See Get-ADUser myusername -Properties * to get available fields

Get-ADUser myusername -Properties * | Select PasswordExpired, LockedOut, Enabled

Replace myusernane with the AD User account

Leave a comment