web-dev-qa-db-ja.com

PowerShell:テキストファイルにエクスポートGPO

私はWindows Serverを初めて使い、興味があります。PowerShellまたはバッチファイルを使用して、グループのセキュリティ設定をテキストファイルにダンプする方法はありますか?ありがとうございました!

5
user337011

PowershellGet-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

5
Net Runner