SharePoint发行版本有SharePoint2003、SharePoint2007、Sharepoint 2010、SharePoint2013和SharePoint2016。SharePoint提供了功能强大的团队协作环境,使得组织能够在整个组织内部实现整合、组织、查找和提供 SharePoint站点。 我们通常使用Visual Studio 2010来快速开发和部署我们的Sharepoint Solution.但有时我们不得不遇到要把我们开发的Solution Packages部署到其它物理位置(生产机),而不是我们开发环境所指向的服务器(测试机)。以前我们使用Stsadm工具来完成此工作,但现在我们更推荐使用PowerShell来操作。 ?? 如果要使用PowerShell,则只需要从你的目标服务器桌面的的Start菜单中找到 ? ??? 系统会自动加载Microsoft.SharePoint.PowerShell,我们便可以直接在其Command窗口中执行我们将要执行的PowerShell命令.如果对某个PowerShell命令(如Add-SPSolution)有使用上的问题,可在其Command窗口中使用Get-Help? Add-SPSolution 来取得此命令的相关帮助。 ?? 如果你是开发的Sandboxed solution,那么你需要使用Add-SPUserSolution命令来执行上面的操作。此命令需要参数–literalpath,此参数提指向Solution的全路径, ? 如果是使用PowerShell命令,则如下 Install-SPSolution?–Identity?MySharepointProject.wsp?–WebApplication?http://myserver-sp1:2010/??-GACDeployment? 如果部署的是 Sandboxed solution,则使用Install-SPUserSolution命令。 ??????????????????????????????? SharePoint Web 应用程序的有效名称(例如,MyOfficeApp1);或有效 SPWebApplication 对象的实例。 ?????????AllWebApplications: 指定为服务器场中的所有 SharePoint Web 应用程序部署新的 SharePoint 解决方案。 ? 如果你需要强制部署此Solution,你可以使用-Force参数。 ? 如果是使用PowerShell命令: Update-SPSolution?–Identity?MySharepointProject.wsp?–LiteralPath?D:\Sp2010\DeploySolution\MySharepointProject.wsp??–GACDeployment四、回收已经部署的Solution 我们也可使用–AllWebApplications参数来一次性从此Sharepoint Farm中的所有部署此Solution的Web Application中回收Solution. 五、移除Solution ? 上面的第四、五步如果用Stsadm来完成,则通常我们可以建立一个批处理文件eg: DeleteSolution.bat @echo?off rem?**?declare?the?solution?to?be?retracted?** set?solutionName=SampleSolution rem?**?declare?the?set?of?fetures?to?be?de-activated?** set?featureSampleFeature1=SampleFeature1 set?featureSampleFeature2=SampleFeature2 set?featureSampleFeature3=SampleFeature3 rem?**?Replace?this?value?with?the?URL?of?your?site?** @set?url=http://servername/sites/sitecollectioname/sitename @set?PATH=C:\Program?Files\Common?Files\Microsoft?Shared\web?server?extensions\12\BIN;%PATH%? echo?deactivating?features?in?solution?%solutionName%... echo?---------------------------------------------------- stsadm?-o?deactivatefeature?-name?%featureSampleFeature1%?-url?%url%?-force stsadm?-o?deactivatefeature?-name?%featureSampleFeature2%?-url?%url%?-force stsadm?-o?deactivatefeature?-name?%featureSampleFeature3%?-url?%url%?-force echo?Attempting?to?uninstallfeature?and?retract?solution echo?--------------------------------------------------- echo?Rectracting?solution?%solutionName%?from?solution?store... stsadm?-o?retractsolution???-name?%solutionName%.wsp?-immediate stsadm?-o?execadmsvcjobs? echo?Deleting?solution?%solutionName%?from?solution?store... stsadm?-o?deletesolution?-name?%solutionName%.wsp?-override? echo. if?errorlevel?==?0?goto?:success :success echo?Successfully?deployed?solution?and?activated?feature(s).. echo?. goto?end :end pause?stsadm?–o?addsolution?–name?D:\Sp2010\DeploySolution\MySharepointProject.wsp Sharepoint 可以帮助企业用户轻松完成日常工作。 |
温馨提示:喜欢本站的话,请收藏一下本站!