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-XMLWindowsFirewallProfile {
<#
.SYNOPSIS
Converts a Windows Firewall profile to XML format.
.DESCRIPTION
This function takes a Windows Firewall profile object and converts it to XML format for further processing.
.PARAMETER GPO
Specifies the Windows Firewall profile object to convert.
.PARAMETER SingleObject
Indicates whether to convert a single object or multiple objects.
.EXAMPLE
ConvertTo-XMLWindowsFirewallProfile -GPO $FirewallProfile -SingleObject
Converts a single Windows Firewall profile object to XML format.
.EXAMPLE
ConvertTo-XMLWindowsFirewallProfile -GPO $FirewallProfiles -SingleObject:$false
Converts multiple Windows Firewall profile objects to XML format.
#>
[cmdletBinding()]
param(
[PSCustomObject] $GPO,