Product: PowerShell Universal Version: 2026.1.2
I’d like to add custom links to the portal home page. Either in the top bar or in the left nav. I have not found a way to do this. I attempted to see if I could add html to some of the branding fields and that did not work.
Is there any way to make this work without adding a custom page or app?
The whole point in the portal (currently) is that there’s no ‘developement’ required, it’s all done through configuration in the admin menu of PSU resources. If you want anything other than an area that displays scripts and links to apps, you’d have to make a web app. You could always just make a basic one page web app with the links you require, and then in your portal add that resource.
Yep, we considered that but were hoping there was another way. Thanks for the response.
If using New-UDApp, you can simply use the HeaderContent switch to place buttons with links. Example:
New-UDApp -Title “App” -HeaderContent {
New-UDButton -Icon (New-UDIcon -Icon Home) -Text ‘PortalHome’ -Href ‘’
}