How To Change Suite Bar In SharePoint 2016

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 Central Admin (Dev) along with the navigation URL and also image.

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 “http://ca.krossfarm.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 Central Admin (Dev)
    1. $webapp = Get-SPWebApplication “http://ca.krossfarm.com”  
    2. $webapp.SuiteNavBrandingText = “Central Admin (Dev)”  
    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 = "http://ca.krossfarm.com1/Shared%20Documents/leaf-and-flames-logo.jpg"  
  2. $webapp.SuiteNavBrandingLogoTitle ="KrossFarm"  
  3. $webapp.SuiteNavBrandingLogoNavigationUrl = "http://ca.krossfarm.com"  
  4. $webapp.Update()  

 

  • LogoURL is URL of the Logo
  • Logo Title Text
  • Navigation URL

After Refreshing the Page, you will see output something like this.



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

Up Next
    Ebook Download
    View all
    Learn
    View all