I'm new to Windows Server, and I'm curious: is there any way to dump group security settings to a text file, using PowerShell or batch files? Thank you!
Asked
Active
Viewed 7,623 times
5
-
3I'm confused, in the title you're asking about exporting the GPO to a text file, and then in the question you're asking about exporting group security settings to a text file? – Noor Khaldi Feb 11 '16 at 21:53
-
1Needs clarification. Unclear what you are asking. – Ryan Ries Feb 12 '16 at 01:18
1 Answers
5
You can use Powershell Get-GPOReport command to export all your GPO settings either to HTML or to XML file.
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
More information about Get-GPOReport usage can be found here: https://technet.microsoft.com/ru-ru/library/ee461057.aspx
Net Runner
- 5,626
- 11
- 29