Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-HTMLStatus

Namespace PSWriteHTML

Creates a new HTML status section with customizable content.

Remarks

The New-HTMLStatus function creates an HTML status section with customizable content. It allows you to display status information with flexibility.

Examples

Authored help example

EXAMPLE 1


New-HTMLStatus -Content {
    "Status: OK"
}
Creates a new HTML status section displaying "Status: OK".
        

EXAMPLE 2


$content = {
    "Status: Error"
}
New-HTMLStatus -Content $content
Creates a new HTML status section displaying "Status: Error".
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-HTMLStatus [-Content <ScriptBlock>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Content ScriptBlock optionalposition: 0pipeline: False
Specifies the content to be displayed within the status section as a ScriptBlock.