Modify the Title of the Global Navigation in SharePoint 2013 with PowerShell


Source: http://www.fiechter.eu/blog/Lists/Posts/Post.aspx?ID=27&mobile=0
By Adrian Fiechter

The new global navigation in SharePoint 2013 looks very promising, anyway I assume that many persons out there want to change it. Especially the “SharePoint” title.

There are different approachs which can be considered to change the global navigation. For example, changing the Mastpages, using the newly introduced Design Packages or doing some dirty java script hacks. All of them are giving an impression as this is a complete overkill for such a small issue. The good news, it is.

Before the script:

After the script:

Microsoft has actually added a new property to the web application which allows us to replace the SharePoint text with custom HTML by PowerShell or object model.

With the following script you can change it and add your custom HTML there:

$app = Get-SPWebApplication -Identity https://www.fiechter.eu

$app.SuiteBarBrandingElementHtml = “<div class=’ms-core-brandingText’>AdriansPoint</div>”

$app.Update()

Source: http://www.fiechter.eu/blog/Lists/Posts/Post.aspx?ID=27&mobile=0
By Adrian Fiechter

About these ads

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 111 other followers

%d bloggers like this: