Friday, 13 December 2013

Want to Change "Sharepoint" Text on top of the sharepoint 2013

 Want to Change "Sharepoint" Text on top of the sharepoint 2013

 here the way to do this with powershell

 
 

 
You can set the web application's SuiteBarBrandingElementHtml property with PowerShel,to change the text "SharePoint" shown in top left banner of  SharePoint 2013 sites.
Add-PSSnapin Microsoft.SharePOint.PowerShell
#Get the Web Application
$webApp = Get-SPWebApplication  "http://c4968397007/ "

#Set the "SharePoint" text Property
$webApp.SuiteBarBrandingElementHtml = "worldsoft intranet"

# You can also replace it with Clickable Hyperlink - Images
# $webApp.SuiteBarBrandingElementHtml = '<div class="ms-core-brandingText"><a href="http://intranet.worldsoft.com"><img src="http://intranet.worldsoft.com/SiteAssets/crescent_logo.png"/></a></div>'

#Update changes
$webApp.Update()
 
 

No comments:

Post a Comment