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 Quickcheck Newinfocard

Source-owned example maintained with PSWriteHTML.

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

New-HTML {
    New-HTMLSection -HeaderText "Application Overview" -Density Comfortable {
        New-HTMLInfoCard -Title "Total Applications" -Number 55 -Subtitle "Active Apps" -Icon "📱" -IconColor '#0078d4'
        New-HTMLInfoCard -Title "App Registrations" -Number 63 -Subtitle "Registered" -Icon "📋" -IconColor '#0078d4'
        New-HTMLInfoCard -Title "Enterprise Apps" -Number 45454 -Subtitle "Enterprise" -Icon "🏢" -IconColor '#0078d4'
        New-HTMLInfoCard -Title "Microsoft Apps" -Number 123 -Subtitle "Official" -Icon "Ⓜ️" -IconColor '#0078d4'
    }
    New-HTMLSection -HeaderText "Application Overview" -Density Comfortable {
        New-HTMLSection -Invisible {
            New-HTMLInfoCard -Title "Managed Identities" -Number 13 -Subtitle "System Managed" -Icon "🔐" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "Apps w/ Delegated Permissions" -Number 19 -Subtitle "User Consent" -Icon "👥" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "Apps w/ Application Permissions" -Number 500 -Subtitle "Admin Consent" -Icon "🔑" -IconColor '#0078d4'
            New-HTMLInfoCard -Title "Apps with No Sign-In Activity" -Number 2300 -Subtitle "Inactive" -Icon "⚠️" -IconColor '#d13438'
        }
    }
} -FilePath "$PSScriptRoot\Example-QuickCheck-NewInfoCard.html" -Online -Show