Wictor Wilen wrote an awesome post on this at this URL: http://www.wictorwilen.se/sharepoint-2013-central-administration-productivity-tip The code is as follows:
|
asnp microsoft.sharepoint.powershell $ca = Get-SPWebApplication -IncludeCentralAdministration | ?{$_.IsAdministrationWebApplication -eq $true} $ca.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>Central Admin: FarmA Production</div>" $ca.Update() |
All you need to do for your farm is modify “Central Admin: FarmA Production” to whatever you want your farm to … Read More
You must be logged in to post a comment.