This power shell script allows you to download the WSP that you have deployed in a SharePoint farm
$frm = Get-SPFarm
$file = $frm.Solutions.Item("sfs.intranet.artifacts.wsp").SolutionFile
$file.SaveAs("c:wspsfs.intranet.artifacts.wsp")
This power shell script allows you to download the WSP that you have deployed in a SharePoint farm
$frm = Get-SPFarm
$file = $frm.Solutions.Item("sfs.intranet.artifacts.wsp").SolutionFile
$file.SaveAs("c:wspsfs.intranet.artifacts.wsp")
Leave a comment