Evotec

Project

GPOZaurr

GPOZaurr helps inspect, report on, and remediate Group Policy environments with PowerShell.

Stars 1,166
Forks 115
Open issues 16
PowerShell Gallery downloads 417,764
Release v1.1.9
Language: PowerShell Updated: 2026-04-11

API Reference

Function

Export-GPOZaurrContent

Namespace GPOZaurr

Exports Group Policy Objects (GPOs) to XML or HTML files.

Remarks

This function exports GPOs to either XML or HTML files based on the specified parameters.

Examples

Authored help example

EXAMPLE 1

PS >


Export-GPOZaurrContent -FolderOutput "C:\ExportedGPOs" -ReportType HTML
Exports all GPOs to HTML format and saves them in the "C:\ExportedGPOs" folder.
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Export-GPOZaurrContent -FolderOutput <String> [-ReportType <XML|HTML>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

FolderOutput String requiredposition: 0pipeline: Falsealiases: Path
Specifies the folder path where the exported GPO files will be saved.
ReportType String optionalposition: 1pipeline: Falsevalues: 2
Specifies the type of report to generate. Valid values are XML or HTML. The default value is XML.
Possible values: XML, HTML