Project

Statusimo

PowerShell Generated Status Page

Stars108
Forks13
Open issues3
PowerShell Gallery downloads20742
Releasev0.6
Language: PowerShell Updated: 2026-04-11T10:18:54.0000000+00:00

Curated Examples

Generate a static status page

Use Statusimo to generate a static HTML status page from local event folders.

This pattern is useful when a simple static file can serve the status page without a hosted service.

It comes from the source example at Examples/Generate-Status.ps1.

When to use this pattern

  • You want a static status page artifact.
  • Incidents and maintenance windows are stored as files.
  • You want the output to be deployable anywhere static HTML can live.

Example

Import-Module .\Statusimo.psd1 -Force

New-StatusimoPage -FilePath "$PSScriptRoot\StatusPage.html" `
    -IncidentsPath "$PSScriptRoot\Incidents" `
    -MaintenancePath "$PSScriptRoot\Maintenance"

What this demonstrates

  • generating a status page file
  • separating incident and maintenance sources
  • keeping the publishing step static

Source