Home Laptops & Desktops Powershell – Export all Windows AD GPO’sKerry Cordero·Laptops & DesktopsServers·May 12, 2021·1 min read This will dump all GPO’s into HTML files. Get-GPO -all | % { Get-GPOReport -GUID $_.id -ReportType HTML -Path "C:\MyExports\$($_.displayName).html" }