Download Deployed Solutions (WSP) from Central Admin with PowerShell in SharePoint 2013

  1. $FolderPath = "c:\Solutions"  
  2. foreach ($solution in Get-SPSolution)  
  3. {  
  4.    $id = $Solution.SolutionID  
  5.    $title = $Solution.Name  
  6.    $filename = $Solution.SolutionFile.Name  
  7.    $solution.SolutionFile.SaveAs("$FolderPath\$filename")  
  8. }

Comments

Popular posts from this blog

Add attachment filed column in SharePoint custom list forms through SharePoint designer 2013

Get all column values based on a distinct column value from SharePoint list through rest api and json filters

Sharepoint 2013 interview Questions..