Download Deployed Solutions (WSP) from Central Admin with PowerShell in SharePoint 2013
$FolderPath = "c:\Solutions" foreach ($solution in Get-SPSolution) { $id = $Solution.SolutionID $title = $Solution.Name $filename = $Solution.SolutionFile.Name $solution.SolutionFile.SaveAs( "$FolderPath\$filename" ) }