从 WSS 中提取解决方案文件
我试图弄清楚如何从 SharePoint 服务器中提取解决方案文件 .wsp 文件。 这可能吗?如果可能的话怎么办?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个小型控制台应用程序并使用 SPFarm.Local.Solutions 属性访问解决方案。 包含 Microsoft.SharePoint.Administration 命名空间并使用以下代码片段下载解决方案文件:
在调用 SaveAs() 方法之前,您需要确保输出目录存在。 如果不存在,则会抛出异常。
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.
您可以使用 SPFarm 访问场上的解决方案。本地 .解决方案属性。 我不确定您是否可以检索底层文件。 这就是我要开始的地方。
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.