13 lines
371 B
PowerShell
13 lines
371 B
PowerShell
$Navigation = @(
|
|
New-UDListItem -Label 'Home' -OnClick {
|
|
Invoke-UDRedirect -Url '/Home'
|
|
}
|
|
New-UDListItem -Label 'AD Service Accounts' -OnClick {
|
|
Invoke-UDRedirect -Url '/ADServiceAccount'
|
|
}
|
|
)
|
|
|
|
New-UDApp -Title 'PowerShell Universal' -Pages @(
|
|
Get-UDPage -Name 'Home'
|
|
Get-UDPage -Name 'ADServiceAccount'
|
|
) -Navigation $Navigation |