Monday, October 27, 2014

Change branding text (text in top left corner) SharePoint 2013

Change the word 'SharePoint' in the upper-left corner of the screen to better reflect individual branding with PowerShell










Run PowerShell command as Administrator.

$webApp = Get-SPWebApplication https://portal

$webApp.SuiteBarBrandingElementHtml = "Portal"

$webApp.Update()

No comments:

Post a Comment