It is always recommended to backup your existing code, packages and all other important stuff before a new deployment. The same is applicable to SharePoint as well.
But what if you do not have a backup of existing WSP Solution ?Well, you can use PowerShell to extract/download the wsp solution from SharePoint FARM.
Extract wsp solution using PowerShell script
$farm = Get-SPFarm
$file = $farm.Solutions.Item("mysolution.wsp").SolutionFile
$file.SaveAs("c:\mysolution_backup.wsp")
where,
mysolution.wsp = the name of solution which you want to extract
mysolution_backup.wsp = the name by which you want to save the solution
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!