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
+28
View File
@@ -1,4 +1,32 @@
function New-HTMLReportAll {
<#
.SYNOPSIS
Generates an HTML report based on specified parameters.
.DESCRIPTION
This function generates an HTML report with customizable content based on the provided parameters. It supports generating standard reports and can be used for various reporting purposes.
.PARAMETER FilePath
Specifies the file path where the HTML report will be saved.
.PARAMETER Online
Indicates whether the report should be generated online.
.PARAMETER HideHTML
Hides the HTML content of the report if specified.
.PARAMETER Type
Specifies the type of report to generate.
.EXAMPLE
New-HTMLReportAll -FilePath "C:\Reports\Report.html" -Online -Type "Summary"
Generates an HTML report with a summary of data and saves it to the specified file path.
.EXAMPLE
New-HTMLReportAll -FilePath "C:\Reports\FullReport.html" -Type "Detailed"
Generates a detailed HTML report and saves it to the specified file path.
#>
[CmdletBinding()]
param(
[string] $FilePath,