SharePoint 2013 - SPLessons

Downloading WSP from Central Administration

Home > > Tutorial
SPLessons 5 Steps, 3 Clicks
5 Steps - 3 Clicks

Downloading WSP from Central Administration

 Downloading WSP from Central Administration

Description :
Hello Everyone, In our current post we are going to see how to Downloading WSP from Central Administration. This will be applicable to share point 2010 and 2013.

Step1 :
Open Management Shell as an Administrator

Step2 :
Paste the below Power shell snippet

[xml] $farm = Get-SPFarm $file = $farm.Solutions.Item("Nameofthewsp.WSP").SolutionFile $file.SaveAs("C:\Backup\Nameofthewsp.WSP") [/xml] Note: replace "Nameofthewsp" with your wsp in above snippet.