Overview
To help make it abundantly clear which central admin site someone is logged into, I wanted to change the top bar text to something other than “SharePoint”. Turns out you can do that using the SuiteBarBrandingElement value on the Central Administration Web Application object from PowerShell.
Code:
Add–PSSnapin microsoft.sharepoint.powershell $ca = Get–SPWebApplication –IncludeCentralAdministration | ` ?{$_.IsAdministrationWebApplication -eq $true} $ca.SuiteBarBrandingElementHtml = “<div class=’ms-core-brandingText’>SP2013 Shared Services Farm (PRODUCTION)</div>“ $ca.Update()
Result:
Learn more about Tallan or see us in person at one of our many Events!