I'm trying to figure out how to extract a solution file .wsp file from a SharePoint server. Is this possible and if so how?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can make a small console application and access the solutions using the SPFarm.Local.Solutions property. Include the Microsoft.SharePoint.Administration namespace and use the following code snippet to download the solution file:
You need to make sure that your output directory exists before calling the SaveAs() method. If it does not exists an exception is thrown. |
|||
|
|
|
You can access the Solutions on a farm by using the SPFarm.Local.Solutions property. I'm not sure if you can retrieve the underlying file though. That's where I'd start. |
|||
|
|