Enumerating GPOs
PowerView
Get list of GPOs of current domain
Get-NetGPOGet list of GPOs of another domain
Get-NetGPO -Domain <DOMAIN NAME>Get list of GPO names of current domain
Get-NetGPO | Select displaynameGet list of GPO names of another domain
Get-NetGPO -Domain <DOMAIN NAME> | Select displaynameGet GPO applied on a specific OU with gplink
(Get-NetOU <OU NAME> -FullData).gplink.split(";")[0] -replace "^." | %{Get-NetGPO -ADSpath $_ }Get resultant set of GPO policies
gpresult /RGet GPOs which use restricted groups or groups.xml for interesting users
Get-NetGPOGroupGet users which are in a local group of a machine using GPO
Find-GPOComputerAdmin -Computername <COMPUTER NAME>Get machines where the given user is member of a specific group
Get GPO applied on an OU
Active Directory Module
Get list of GPOs of current domain
Get resultant set of GPOs of current domain
Get GPO applied on an OU
Last updated