top of page

How To Change Suite Bar In SharePoint 2016

  • Mayur Khatale
  • Aug 6, 2020
  • 2 min read

Whenever you browse the OOTB site collection, you will see the most popular SharePoint logo on the top left bar. Now most companies want to change that to their own text and also want to place a logo on that Suite Bar.


With the Release of the SharePoint 2016, Microsoft Introduced new PowerShell cmdlets which will set these things in a couple of lines.


I will walk through the steps to change the text, and also, to place a logo on the page.


Scenario


In this example, I will use Central admin web app and change the text from SharePoint to SharePoint - UAT.





Let’s start the process. Make sure to login to the SharePoint server with a farm admin account.


To View To view the current suite bar’s text, let’s run the basics first and see what value returns.

  1. $webapp = Get-SPWebApplication “https://sp2019uat-ca.SPtest.com

  2. $webapp.SuiteNavBrandingText  


The output for this will be “SharePoint”


To Change


Please start SharePoint PowerShell (Run as Administrator) with your farm admin account.

  • Run the below command to change text to SharePoint - UAT

    1. $webapp = Get-SPWebApplication “https://sp2019uat-ca.SPtest.com

    2. $webapp.SuiteNavBrandingText = “SharePoint - UAT”  

    3. $webapp.Update()  

After refreshing the page, you will see it like this.



To Set the Logo A new improvement is,  if we want to set our company logo (BTW it will display in the middle of the top suite bar) you need to upload the logo in the SharePoint site. You can link to it using a URL from other sites, but I would upload it in a Central Admin shared Library and link it from there. Start the PowerShell console and run the below commands,

  1. $webapp.SuiteNavBrandingLogoUrl = "https://sp2019uat-ca.SPtest.com/Shared%20Documents/MyFarm-logo.jpg"

  2. $webapp.SuiteNavBrandingLogoTitle ="MyFarm"

  3. $webapp.SuiteNavBrandingLogoNavigationUrl = "https://sp2019uat-ca.SPtest.com"

  4. $webapp.Update()  

  • LogoURL is URL of the Logo

  • Logo Title Text

  • Navigation URL

This will conclude the session, in this article we learned how can we change the Suite Bar’s Text with the help of PowerShell command. We covered the following commands  in this article.

  • SuiteNavBrandingText

  • SuiteNavBrandingLogoUrl

  • SuiteNavBrandingLogoTitle

  • SuiteNavBrandingLogoNavigationUrl


Note : Its only applicable for SharePoint 2016 , SharePoint 2019 don't support it due to different branding setup.

Comments


Post: Blog2 Post

Subscribe Form

Thanks for submitting!

©2020 by SharePoint On MyTip. Proudly created with Wix.com

  • Facebook
  • Twitter
  • LinkedIn
bottom of page