Wednesday, February 18, 2015

Download a WSP Solution File from SharePoint 2010 Farm with PowerShell

Download a WSP Solution File from SharePoint 2010 Farm with PowerShell

 
 
$farm = Get-SPFarm
$file = $farm.Solutions.Item("extendeddiagnosticproviders.wsp").SolutionFile
$file.SaveAs("c:\temp\extendeddiagnosticproviders.wsp")