Extract a WSP Solution from SharePoint 2010
This post shows how to download a WSP from SharePoint 2010 using PowerShell.
Background
A customer of mine had a scenario where they needed to download a WSP from SharePoint 2010. In the Central Administration screen, a link is not available for you to download the WSP solution.
Likewise, with stsadm, there’s not a command to download a solution.
Implementation
I could have written this with a C# console application, but I’ve been playing with PowerShell and found that the 3 lines of PowerShell code that it takes is much easier than trying to deploy a binary to a customer’s environment.
$farm = Get-SPFarm
$file = $farm.Solutions.Item("extendeddiagnosticproviders.wsp").SolutionFile
$file.SaveAs("c:\temp\extendeddiagnosticproviders.wsp")
Note that in order to run this command, you need to be a member of the Farm Administrators group and have permission to the configuration database. To configure the permissions for SQL, I recommend using Add-SPShellAdmin.
For More Information
Comments
Anonymous
December 12, 2011
Hi...thanks for post...Will this same command work for Sandbox solutions too. Just curious, i know we can download sandbox solutions from site.Anonymous
December 12, 2011
Nice catch. For Sandbox solutions, this would not work because this solution accesses items in the SPFarm.Solutions collection, the solutions are stored in the farm as part of the configuration database. Sandbox solutions are different because they are stored in the content database, in a document library called the Solution Gallery. If you want to access these programmatically, I would think you could use the SPList API, or Lists.asmx web service.Anonymous
May 20, 2014
Helped us out of a pinch! Thank you!Anonymous
August 26, 2014
The comment has been removedAnonymous
September 17, 2014
Kirk, you saved my day you are my hero :)Anonymous
November 06, 2014
Excellent script. Worked for me! Thanks!Anonymous
December 23, 2014
Thanks, Kirk! Suspicioned for a long time that this would be possible, but had never ran into info that would lead me to the How. Have a need for this in an upgrade to SP2013 and am grateful for your post.Anonymous
March 15, 2015
We have written SharePoint WSP Solutions Backup and Retention Powershell script based on above & have uploaded to Microsoft Gallery. msexchange.me/.../sharepoint-wsp-solutions-backup-and-retentionAnonymous
March 15, 2015
Just what I needed! Thanks!