Monday, February 1, 2016

Extract WSP file from SharePoint Central Admin Web app

$farm = Get-SPFarm
$file = $farm.Solutions.Item("nameofwsp.wsp").SolutionFile
$file.SaveAs("C:\temp\nameofwsp.wsp");