Examples

Examples of things you can do with apps.

Display Processes

This example displays processes in a table.

New-UDApp -Title 'Processes' -Content {
    $Processes = Get-Process | Select-Object Id, Name
    New-UDTable -Columns @(
        New-UDTableColumn -Property 'Id' -Title 'Id'
        New-UDTableColumn -Property 'Name' -Title 'Name'
    ) -Data $Processes -ShowPagination
}

File System Browser

Create a file system browser with a dynamic tree view.

Create User Form

This example shows how to create a local user account.

Clock

This example shows how to create a clock component in PowerShell Universal.

Last updated

Was this helpful?