21 lines
686 B
PowerShell
21 lines
686 B
PowerShell
$Navigation = @(
|
|
New-UDListItem -Label 'Home' -OnClick {
|
|
Invoke-UDRedirect -Url '/Home'
|
|
}
|
|
New-UDListItem -Label 'ServerBuildRequestV1' -OnClick {
|
|
Invoke-UDRedirect -Url '/ServerBuildRequestV1'
|
|
}
|
|
New-UDListItem -Label 'ApplicationServerV2' -OnClick {
|
|
Invoke-UDRedirect -Url '/ApplicationServerV2'
|
|
}
|
|
New-UDListItem -Label 'SpCmdbCompare' -OnClick {
|
|
Invoke-UDRedirect -Url '/SpCmdbCompare'
|
|
}
|
|
)
|
|
|
|
New-UDApp -Title 'PowerShell Universal' -Pages @(
|
|
Get-UDPage -Name 'Home'
|
|
Get-UDPage -Name 'ApplicationServerV2'
|
|
Get-UDPage -Name 'ServerBuildRequestV1'
|
|
Get-UDPage -Name 'SpCmdbCompare'
|
|
) -Navigation $Navigation |