Today on, "This should be really easy but it's really not!!!But it really is". We are attempting to add a banner image to the far left hand corner of site collection in SharePoint 2013.
Now it's fairly easy to change the title of your SharePoint 2013 site collection using the below PowerShell command:
Add-PSSnapin Microsoft.SharePoint.PowerShell #Get your site$webapp = Get-SPWebApplication "https://myservernamehere"#Add Text$webapp.SuiteBarBrandingElementHtml = '<div class="ms-core-brandingText">What's Our New Site Title</div>' #Update Site$webapp.Update ()
It's also very easy to change the site logo using the below PowerShell command: