Project

PSWriteHTML

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

Stars1015
Forks112
Open issues54
PowerShell Gallery downloads7576901
Releasev1.41.0
Language: PowerShell Updated: 2026-08-10T20:00:10.0000000+00:00

Curated Examples

Example Infocard Boundarytest

Source-owned example maintained with PSWriteHTML.

Import-Module ..\..\PSWriteHTML.psd1 -Force

New-HTML {
    New-HTMLSection -HeaderText "InfoCard Boundary Respect Test" -Wrap wrap {
        New-HTMLSection -Invisible -Density Comfortable {
            New-HTMLInfoCard -Title "Total Applications" -Number 55 -Subtitle "In Panel 1" -Icon "📱" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "App Registrations" -Number 63 -Subtitle "In Panel 2" -Icon "📋" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "Enterprise Apps" -Number 45454 -Subtitle "In Panel 3" -Icon "🏢" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "Microsoft Apps" -Number 123 -Subtitle "In Panel 4" -Icon "🏢" -IconColor '#0078d4'
        }
        New-HTMLSection -Invisible {
                New-HTMLInfoCard -Title "Managed Identities" -Number 13 -Subtitle "Should fit in panel" -Icon "🔐" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps w/ Delegated Permissions" -Number 19 -Subtitle "Should not overflow" -Icon "👥" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps w/ Application Permissions" -Number 500 -Subtitle "Fits nicely" -Icon "🔑" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps with No Sign-In Activity" -Number 2300 -Subtitle "Stays in bounds" -Icon "⚠️" -IconColor '#d13438' -Style "Compact"
        }
        New-HTMLSection -Invisible {
                New-HTMLInfoCard -Title "Managed Identities" -Number 13 -Subtitle "Should fit in panel" -Icon "🔐" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps w/ Delegated Permissions" -Number 19 -Subtitle "Should not overflow" -Icon "👥" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps w/ Application Permissions" -Number 500 -Subtitle "Fits nicely" -Icon "🔑" -IconColor '#0078d4' -Style "Compact"
                New-HTMLInfoCard -Title "Apps with No Sign-In Activity" -Number 2300 -Subtitle "Stays in bounds" -Icon "⚠️" -IconColor '#d13438' -Style "Compact"
        }
    }
} -FilePath "$PSScriptRoot\Example-InfoCard-BoundaryTest.html" -Online -Show