您可以使用Powershell Get-GPOReport命令将所有GPO设置导出为HTML或XML文件.
原文链接:https://www.f2er.com/windows/367504.htmlImport-Module GroupPolicy # Export a specific GPO Get-GPOReport -Name "Default Domain Policy" -ReportType Html -Path Default.html Get-GPOReport -Name "Default Domain Policy" -ReportType Xml -Path Default.xml # Export all GPOs Get-GPOReport -All -ReportType Html -Path All.html Get-GPOReport -All -ReportType Xml -Path All.xml
有关Get-GPOReport使用的更多信息,请访问:https://technet.microsoft.com/ru-ru/library/ee461057.aspx