Wednesday, February 5, 2014

Download WSP file from SharePoint Farm

$farm = Get-SPFarm
$file = $farm.Solutions.Item("branding.wsp").SolutionFile
$file.SaveAs("D:\FolderName\branding.wsp")

It will download Solution from SharePoint farm Solution gallary.

SharePoint document metadata not updating

I faced a weird issue today, Metadata for document which has lookup column was not updating even after saving the item. There was no erro...