Get-ADGroup

# This will display the groups in AD
Get-ADGroup -Filter * | select name
# We can identify some groups
Get-ADGroup -Identity "Backup Operators"

Last updated