Windows – PowerShell:将GPO导出到文本文件

前端之家收集整理的这篇文章主要介绍了Windows – PowerShell:将GPO导出到文本文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 Windows Server的新手,我很好奇:有没有办法使用PowerShell或批处理文件将组安全设置转储到文本文件?谢谢!
您可以使用Powershell Get-GPOReport命令将所有GPO设置导出为HTML或XML文件.
Import-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

原文链接:https://www.f2er.com/windows/367504.html

猜你在找的Windows相关文章