Created with PowerShell Universal Dashboard - Remove this

I am using community edition. How to remove this footer message?

https://docs.universaldashboard.io/feature-comparison

You need the enterprise editon to remove the footer message.

Thanks for the quick response and I will buy Enterprise Edition

I bought the license. How do I apply the license and removing the footer?

I got it from here
https://docs.universaldashboard.io/licensing
Thanks

1 Like

Read the documentation? :slight_smile:
https://docs.universaldashboard.io/licensing

and remember to not import the Community module, but the enterprise one:
https://docs.universaldashboard.io/getting-started

1 Like

I uninstalled and re-installed UD. i have license and applied the license. now the footer comes with
Created with PowerShell Universal Dashboard
how to remove this and keep mine?

I usually set it blank in my New-UDDashboard footer parameter -Footer = (New-UDFooter -Endpoint{})

Are you sure you’re importing the Enterprise version when you start your dashboard? I would uninstall community since you own enterprise.

Uninstall-Module UniversalDashboard.Community

At the top of your dashboard define a foot:-
$Footer = New-UDFooter -Copyright ‘Designed by YOUR NAME’
Then call that $Footer when you run your dashboard:-
$Dashboard = New-UDDashboard -Title “Test FOOTER” -Pages @(
$testPage
) -Footer $Footer

Hi,
since 2.4 i have the same problem with the footer message.
Before 2.4 the default link “Created with PowerShell Universal Dashboard” was not displayed.
Now the default link will be displayed again as “Created with PowerShell Universal DashboardGoogle”.
My additional link is also displayed directly behind the default link. If I do not specify my link, the default link will still be displayed.
Do I miss anything or has anything changed at 2.4? I also can’t find a switch for the cmdlet(s) in the documentation that hides the default link.
Or is this a bug?

I am using 2.4 Enterprise with license

My example Code:

$CopyrightMessage = "Copyright 12345. All Rights Reserved."
$Link = New-UDLink -Text 'Google' -Url 'https://www.google.de' -OpenInNewWindow
$Footer = New-UDFooter -Copyright $CopyrightMessage -Links $Link
$Dashboard = New-UDDashboard -Title $DashboardTitle -Pages $Pages -EndpointInitialization $EndpointInit -Footer $Footer -LoginPage $LoginPage -Navigation $Navigation -NavBarLogo $NavBarLogo -NavBarColor $Cache:NavBarColor
$null = Start-UDDashboard -Dashboard $Dashboard -Endpoint $Endpoints -Name $DashboardName -Port $Port -AllowHttpForLogin

Edit: Same problem when creating the dashboard with only an empty footer instead of all parameters etc.:

-Footer (New-UDFooter -Endpoint { })

Thanks

Hey,

using the same setup like you.

2.4 + license and everything works fine:

$footer = New-UDFooter -Copyright 'copyright text' -links (New-UDLink -Text 'Homepage' -Url "https://link.com" -Icon home)
$db = New-UDDashboard -Footer $footer

Nope, it is not working I am using version 2.4

$footer = New-UDFooter -Copyright ‘copyright text’
$Dashboard=New-UDDashboard -Title “Test Footer” -Content {

} -Footer $footer

Get-UDDashboard | Stop-UDDashboard
Start-UDDashboard -Dashboard $Dashboard -Port 8080

version 2.4 has many issues that adam fixed in nightly releases at below link

Enterprise: https://github.com/ironmansoftware/universal-dashboard-enterprise/releases

soon enough version 2.4.1 will be release with those fixes and more .

you can try the nightly release version and test if your issue fixed on that.

also on your provided example you are adding a footer to the page and that will not remove created with universal dashboard

Hi @wsl2001 Thanks for your reply.
I already read Adam’s announcement yesterday that there are Nightly Builds now, I will test it today.

However, the same code under 2.3.2 led to “Created with Universal Dashboard” not being displayed anymore.
Can you tell me how to remove the default message?

I’m gonna test some more…

If the same code works on previous version then it’s a bug in the current release.
I would wait for tomorrow 2.4.1 release and try the same,if the issue still exists then open an issue at GitHub

I had opened an issue on Github and @psDevUK (Thanks!) was so nice and gave me a tip there that worked. Just make a copy of your dashboard and copying over the initial license file to the new location.