如何升级已托管的sharepoint网站?

时间:2013-09-23 12:53:39

标签: c# sharepoint sharepoint-2010

我是Sharepoint(2010)的新手。我已经提供了一个已托管的Sharepoint网站,我必须在EventReceiver上添加一些FormLibrary。所以我的问题是如何添加托管Sharepoint网站的修改。

有人可以解释如何更新(添加eventreceiver(VS2010)并部署)Sharepoint Site的过程。

我已经安装了Sharepoint Server 2010,我知道如何将eventreceivers添加到本地Sharepoint站点上的库/列表中。

1 个答案:

答案 0 :(得分:1)

在“本地站点”上部署项目后,您将获得WSP文件,将此文件带到服务器并使用以下powershell命令进行部署

添加wsp文件

Add-SPSolution c:\code\SharePointProject2\bin\debug\SharePointProject2.wsp

istalling wsp file

Install-SPSolution –Identity SharePointProject2.wsp –WebApplication http://sp2010 -GACDeployment

有关这些命令的更多详细信息,请查看此链接。

http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2009/12/02/adding-and-deploying-solutions-with-powershell-in-sharepoint-2010.aspx