Common PowerShell Commands for AD
A list of common PowerShell commands for AD. Retrieve AD user(s) # get AD user – basic attributes Get-ADUser “JohnDo” # get AD user – all attributes Get-ADUser “JohnDo” -Properties * # get AD user – additional attribute(s) Get-ADUser “JohnDo” -Properties PasswordLastSet Get-ADUser “JohnDo” -Properties whenChanged,whenCreated # get AD user – output specific attribute Get-ADUser …