About Me

My photo
Muthupet, TamilNadu, India
SharePoint 2010

Thursday, May 16, 2013

Branding, Sharepoint 2013

Changing the SharePoint text to something else using PowerShell

Before:

image

After:

image

PowerShell Snippet

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

Enjoy.

No comments:

Post a Comment