Universal Dashboard is a PowerShell module that can be installed from the PowerShell Gallery.
Install-Module UniversalDashboard -AcceptLicense
Create a new dashboard and add a control to the page.
$Dashboard = New-UDDashboard -Title "Hello, World!" -Content {
New-UDHeading -Text "Hello, World!" -Size 1
}
Start the dashboard. Make sure to select an open port.
Start-UDDashboard -Dashboard $Dashboard -Port 10001