Show App in User Portal

Product: PowerShell Universal
Version: 5.6.13

I setup a new instance an created an App (with New-UDApp).

Its with Authentication an Users can access and use it without a problem via the direct link.

But its not shown on the user Portal, How can i make this possible so that i dont need to share the directlink to all apps with the users.

dashboard.ps1

$Parameters = @{
    Name          = "Reset"
    FilePath      = "dashboards\Reset\Reset.ps1"
    BaseUrl       = "/Reset"
    Environment   = "ResetEnv"
    Authenticated = $true
    Role          = @('Administrator', 'User')
    AutoDeploy    = $true
    Description   = "Dashboard to Reset X"
}
New-PSUApp @Parameters

I don’t know.
Theoretically all apps appear in the portal for all users that have the same role(s) as the app.

Has been resolved due to Tags were Added to the Apps and the Tags dont have the “Show in Portal” as Standard

1 Like