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