Skip to content

Install

  1. Install module with commands below. Module isn't published on NuGet, for the moment, so that's why the install is "manual"
    Install-Module -Name POSHTML5
    
  2. Begin with building a page in a variable:
    $MyReport = New-PWFPage -Title "MY FIRST TEST" -Charset UTF8 -Container -DarkTheme -Content {
        New-PWFCardHeader -BackgroundColor "#fff" -Centered -Content {
            New-PWFTitles -TitleText "Hi, I'm generated on a Windows PC with a Powershell script." -Size 1
        }
    }
    

🔥 To build the content of your report, refer to the Functions tab of the doc.

  1. 🏗 Structure your page
  2. Format your data
  3. 📊 Tables and Charts
  4. Others functions to add titles, formated text, icons, alerts and badges...