Sharepoint

 This is a Powershell script to change the title bar on a SharePoint 2013 webpage (the upper left side).

$url = "http://websiteURL"
$text = "Text Goes here!"

$wa = Get-SPWebApplication $url
$wa.SuiteBarBrandingElementHtml = "
$text
" $wa.Update()