How to share PowerShell Universal link?

I just found out about PowerShell Universal today and think it would be a wonderful tool to share with my users to allow them to run scripts I create. Problem is, I have no idea how to share the url with them. Anyone know how to accomplish this?

Hi @zebula welcome to the forum. If you want to include a link on your dashboards to the site, there are a myriad of ways to go about it. One of the most simple is to create a button, and use that to redirect the page to wherever you want to go. Something like this:

New-UDDashboard -Title "Hello, World!" -Content {
    New-UDButton -Text 'Check out how AWESOME PowerShell Universal is!' -OnClick {
        Invoke-UDRedirect -url "https://docs.powershelluniversal.com/"
    }
}

If you look at the code that is automatically created when you generate a new dashboard in the Admin Console, you will find it to be very similar to this. So you should be able to modify the default code to suit your needs. If you have any more questions, be sure to post back here.