Added or improved help on all functions.

This commit is contained in:
neztach
2024-07-05 13:00:03 -05:00
parent bd103a513b
commit 92f3fcb692
97 changed files with 3074 additions and 35 deletions
@@ -1,4 +1,26 @@
function ConvertTo-XMLWindowsFirewallRules {
<#
.SYNOPSIS
Converts Windows Firewall rules to XML format.
.DESCRIPTION
This function converts Windows Firewall rules to XML format for easier management and analysis.
.PARAMETER GPO
Specifies the Group Policy Object (GPO) containing the firewall rules to be converted.
.PARAMETER SingleObject
Indicates whether to convert a single firewall rule object.
.EXAMPLE
ConvertTo-XMLWindowsFirewallRules -GPO $GPOObject -SingleObject
Converts all firewall rules in the specified GPO to XML format.
.EXAMPLE
ConvertTo-XMLWindowsFirewallRules -GPO $GPOObject
Converts all firewall rules in the specified GPO to XML format without creating a single object.
#>
[cmdletBinding()]
param(
[PSCustomObject] $GPO,