如何正确编写 stsadm -deploysolution? Sharepoint Web 部件部署

发布于 2024-11-09 08:03:54 字数 354 浏览 0 评论 0原文

我得到了其他问题的帮助:

stsadm -o addsolution -filename {WSPFILENAME} stsadm -o deploysolution -name {WSPFILENAME} -url {SITEURL}

我的 WSP 文件在这里:

C:\H\H\H.wsp

url:

https://test0emeamicrosoftonlinecom-6.sharepoint.emea.microsoftonline.com/

如何正确编写此 stsadm 命令?

I got a help from other Question:

stsadm -o addsolution -filename {WSPFILENAME} stsadm -o deploysolution -name {WSPFILENAME} -url {SITEURL}

my WSP file is here:

C:\H\H\H.wsp

url:

https://test0emeamicrosoftonlinecom-6.sharepoint.emea.microsoftonline.com/

how to write this stsadm command correctly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执笏见 2024-11-16 08:03:54

我假设这是针对 SharePoint 2007。需要运行两个 STSADM 命令(SharePoint 2010 应使用 Powershell...STSADM 仅用于向后兼容)。

添加解决方案

stsadm -o addsolution -filename C:\H\H\H.wsp

部署解决方案

部署解决方案包的参数很大程度上取决于取决于解决方案中的内容以及需要部署的内容。

简单的全局部署可能如下所示:

stsadm -o deploysolution -name H.wsp -immediate

对于针对场中特定 Web 应用程序的部署以及将程序集部署到 GAC 的部署,它可能如下所示:

stsadm -o deploysolution -name H.wsp -url http://mydomain.com -allowgacdeployment -immediate

I will assume this is for SharePoint 2007. There are two STSADM commands that need to be run (SharePoint 2010 should use Powershell...STSADM is only there for backwards compatibility).

Add the solution:

stsadm -o addsolution -filename C:\H\H\H.wsp

Deploy the solution:

The parameters for deploying your solution package are largely going to depend on what is in the solution and what needs to be deployed.

A simple global deployment may look something like this:

stsadm -o deploysolution -name H.wsp -immediate

For a deployment targeted to a specific web application in your farm and with assemblies being deployed to the GAC it may look something like this:

stsadm -o deploysolution -name H.wsp -url http://mydomain.com -allowgacdeployment -immediate
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文