Here are the main for the Group Policy Management Console (GPMC) on Windows: Primary Command: GPResult Generate Group Policy reports for a specific computer/user:
# Current user and computer (HTML report) gpresult /h GPReport.html gpresult /h UserReport.html /scope user Current computer only (HTML) gpresult /h ComputerReport.html /scope computer Text-based summary (console output) gpresult /r Remote computer (HTML) gpresult /s RemotePC /h RemoteReport.html Specific user on specific computer gpresult /s RemotePC /user DOMAIN\Username /h DetailedReport.html PowerShell Alternative # Using Get-GPResultantSetOfPolicy (RSOP) Get-GPResultantSetOfPolicy -ReportType Html -Path "GPReport.html" Get summary Get-GPResultantSetOfPolicy -ReportType Xml Export GPO Settings (Backup/Report) # Backup all GPOs to a folder Backup-GPO -All -Path "C:\GPOBackup" -Comment "Backup before changes" Generate HTML report for specific GPO Get-GPO -Name "Default Domain Policy" | New-GPOReport -ReportType Html -Path "GPOReport.html" Generate report for all GPOs in domain Get-GPO -All | New-GPOReport -ReportType Html -Path "AllGPOs.html" Legacy Tools (still work) # RSoP (Resultant Set of Policy) wizard rsop.msc GP Management Console (GUI) gpmc.msc
These commands require running as Administrator and appropriate Group Policy permissions.