get-adgroup -filter{name -like "_*"} -Properties Description | Select Name
View details of a specific user
Get-ADUser -Identity James.Lawyer -Properties *
View All users in an AD Group
Get-ADGroupMember -identity "RS_BusinessFinance" -Recursive | Get-ADUser -Property DisplayName
| Select Name
Get AD Group Details/Properties
Get-ADGroup -Identity RS_ASPRINCIPALS -Properties *
View details of a specific user
Get-ADUser -Identity James.Lawyer -Properties *
View All users in an AD Group
Get-ADGroupMember -identity "RS_BusinessFinance" -Recursive | Get-ADUser -Property DisplayName
| Select Name
Get AD Group Details/Properties
Get-ADGroup -Identity RS_ASPRINCIPALS -Properties *