Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 678 Bytes

getting-started.md

File metadata and controls

35 lines (23 loc) · 678 Bytes

Getting Started

1. Install

Universal Dashboard is a PowerShell module that can be installed from the PowerShell Gallery.

Install-Module UniversalDashboard -AcceptLicense

2. Create a Dashboard

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
}

3. Start the Dashboard

Start the dashboard. Make sure to select an open port.

Start-UDDashboard -Dashboard $Dashboard -Port 10001

Learn More