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