mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-08-21 15:36:44 +00:00
Added or improved help on all functions.
This commit is contained in:
@@ -1,4 +1,26 @@
|
||||
function ConvertTo-XMLSecurityOptions {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Converts Group Policy Object (GPO) data to XML security options.
|
||||
|
||||
.DESCRIPTION
|
||||
This function converts GPO data to XML security options for further processing.
|
||||
|
||||
.PARAMETER GPO
|
||||
Specifies the GPO object to convert.
|
||||
|
||||
.PARAMETER SingleObject
|
||||
Indicates whether to convert a single GPO object.
|
||||
|
||||
.EXAMPLE
|
||||
ConvertTo-XMLSecurityOptions -GPO $myGPO -SingleObject
|
||||
Converts a single GPO object to XML security options.
|
||||
|
||||
.EXAMPLE
|
||||
ConvertTo-XMLSecurityOptions -GPO $myGPO
|
||||
Converts multiple GPO objects to XML security options.
|
||||
|
||||
#>
|
||||
[cmdletBinding()]
|
||||
param(
|
||||
[PSCustomObject] $GPO,
|
||||
|
||||
Reference in New Issue
Block a user