From 40905c67ecb9793736377acda8ceefbc79ab6e65 Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Fri, 3 Dec 2021 22:21:09 +0100 Subject: [PATCH] Update docs --- Public/Save-GPOZaurrFiles.ps1 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/Public/Save-GPOZaurrFiles.ps1 b/Public/Save-GPOZaurrFiles.ps1 index 8c682db..8ce43fd 100644 --- a/Public/Save-GPOZaurrFiles.ps1 +++ b/Public/Save-GPOZaurrFiles.ps1 @@ -1,4 +1,35 @@ function Save-GPOZaurrFiles { + <# + .SYNOPSIS + Exports GPO XML data to files and saves it to a given path + + .DESCRIPTION + Exports GPO XML data to files and saves it to a given path + + .PARAMETER Forest + Target different Forest, by default current forest is used + + .PARAMETER ExcludeDomains + Exclude domain from search, by default whole forest is scanned + + .PARAMETER IncludeDomains + Include only specific domains, by default whole forest is scanned + + .PARAMETER ExtendedForestInformation + Ability to provide Forest Information from another command to speed up processing + + .PARAMETER GPOPath + Path where to save XML files from GPOReport + + .PARAMETER DeleteExisting + Delete existing files before saving new ones + + .EXAMPLE + Save-GPOZaurrFiles -GPOPath 'C:\Support\GitHub\GpoZaurr\Ignore\GPOExportEvotec' -DeleteExisting -Verbose + + .NOTES + General notes + #> [cmdletBinding()] param( [alias('ForestName')][string] $Forest,