Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Der neue SharePoint "HeaderBar" bringt eine kleines verstecktes Featues, welches erlaubt, den HeaderBar Text "SharePoint" nach eigenem Geschmack pro WebApp anzupassen
Vorher:
Via PowerShell lässt sich das relativ einfach anpassen – z.B. um Prod von Test bzw. Dev Umgebungen zu unterscheiden:
$suiteBarText = "SharePoint@Contoso [TEST FARM]"
$webapp = Get-SPWebApplication https://intranet.contoso.com
$webapp.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>$suiteBarText</div>"
$webapp.Update()
Nachher: