Customize Suitebar Text and Link in SharePoint 2016 using PowerShell
Requirement:
SharePoint 2016 has “SharePoint” as the suite bar branding text by default. What if you want to change it to something meaningful, say “Your Company Intranet”? Well, PowerShell can help customize the branding text, Logo, and URL in SharePoint 2016.
PowerShell Script to change Suitebar navigation text and link:
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
$WebApp= Get-SPWebApplication "https://intranet.crescent.com"
$WebApp.SuiteNavBrandingText = "Crescent Portal"
#Blank image from Layouts folder
$webapp.SuiteNavBrandingLogoUrl = "/_layouts/images/dot_ruleper.gif"
$webapp.SuiteNavBrandingLogoTitle = "Crescent Logo"
$webapp.SuiteNavBrandingLogoNavigationUrl = "https://portal.crescent.com"
$webapp.Update()
Here is the result of the customized SharePoint 2016 suite bar branding using PowerShell!
My other post on a related topic: Customizing the SharePoint 2013 suite bar branding using PowerShell
Can you perform this in SharePoint Online using PnP?
Thank you for the instructions.
How to change Suitebar navigation font size? Please help