rob343 Posted May 8, 2018 Report post Posted May 8, 2018 Hi, starting working in a place to look after W10 builds/SCCM but the GPO are in a right mess, i am after a method (power-shell script ?) to give me a readable document of ALL the group policies. i used a similar tool to document SCCM setup. I understand i can do GPRESULT /H but i need need something from a global point of view and ideally in word format. Any Suggestions most welcome. Rob Quote Share this post Link to post Share on other sites More sharing options...
jHetzer Posted May 19, 2018 Report post Posted May 19, 2018 Check out following link Active Directory: How to Export Group Policy Settings using PowerShell Import-Module ActiveDirectory Import-Module GroupPolicy $dc = Get-ADDomainController -Discover -Service PrimaryDC Get-GPOReport -All -Domain enterprise.com -Server $dc -ReportType HTML -Path C:\Temp\GPOReportsAll.html Make sure you have the required modules installed. Quote Share this post Link to post Share on other sites More sharing options...