Scripts

Blobcache text file

Blobcache.txt # from http://blogs.technet.com/b/heyscriptingguy/archive/2010/09/14/use-powershell-to-script-changes-to-the-sharepoint-web-config-file.aspxfunction Enable-SPBlobCache {param( $WebApplication) process { $WebApp = $WebApplication.Read() # SPWebConfigModification to enable BlobCache $configMod1 = New-Object Microsoft.SharePoint.Administration.SPWebConfigModification $configMod1.Path = "configuration/SharePoint/BlobCache" $configMod1.Name = "enabled" $configMod1.Sequence = 0…