Set the logo of all sites in a SharePoint 2013 site collection using PowerShell - Flash post
If you want to quickly set the site logo of a complete SharePoint 2013 site collection, enter the following:
(get-spsite http://YourSiteCollectionURL).AllWebs | foreach {$_.SiteLogoUrl = “/relative/path/to/companylogo.png”; $_.Update()}
Thats all :)
(get-spsite http://YourSiteCollectionURL).AllWebs | foreach {$_.SiteLogoUrl = “/relative/path/to/companylogo.png”; $_.Update()}
Thats all :)
Comments
Post a Comment