Changing the SharePoint text to something else using PowerShell

Before:

After:

PowerShell Snippet

1
2
3
$webApp = Get-SPWebApplication http://tozit-sp:2015
$webApp .SuiteBarBrandingElementHtml = "Awesome Text Goes Here"
$webApp .Update()

原文链接:http://zimmergren.net/technical/sp-2013-tip-change-the-sharepoint-text-in-the-top-left-corner