Downloading wsp from Central Admin
you can run the below script in powershell
$farm = Get-SPFarm
$file = $farm.Solutions.Item("Sample.wsp").SolutionFile
$file.SaveAs("c:\Kannan\sample.wsp")
$file = $farm.Solutions.Item("Sample.wsp").SolutionFile
$file.SaveAs("c:\Kannan\sample.wsp")
The above cmdlet will take only particular wsp as you mentioned in cmdlet
Comments
Post a Comment