Downloading Wsp from SharePoint Central Admin
U sing C#: protected void btnDownloadWSP_Click(object sender, EventArgs e) { SPSolutionCollection allSolutions = SPFarm.Local.Solutions; foreach (SPSolution mySolution in allSolutions) { SPPersistedFile myWSP = mySolution.SolutionFile; if (myWSP.Name == "Sample.wsp") { myWSP.SaveAs("c:\\Export All Solutions\\" + mySolution.Name); ...