部署后执行脚本 - MSDeploy

发布于 2024-09-28 07:16:39 字数 75 浏览 6 评论 0原文

有没有办法在用户使用 IIS 导入部署包并完成安装后触发自定义脚本(或打开 Windows 应用程序)?

有什么帮助吗?

Is there a way to trigger a custom script (or open a windows app) after a user imports the deployment package using IIS and completes the installation?

Any help?

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

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

发布评论

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

评论(1

倚栏听风 2024-10-05 07:16:39

尝试获取 msdeploy.exe 的帮助。

msdeploy.exe -help -postSync


http://technet.microsoft.com/en-us/库/ee619740(WS.10).aspx

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -preSync:runco​​mmand="Appcmd 停止站点
    MyWebSite" -postSync:runco​​mmand="Appcmd 启动站点 MyWebSite"

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -preSync:runco​​mmand="c:\MyBatchFile.bat"

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -postSync:runco​​mmand="c:\MyBatchFile.bat"

Try help for msdeploy.exe.

msdeploy.exe -help -postSync

or
http://technet.microsoft.com/en-us/library/ee619740(WS.10).aspx

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -preSync:runcommand="Appcmd stop sites
    MyWebSite" -postSync:runcommand="Appcmd start sites MyWebSite"

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -preSync:runcommand="c:\MyBatchFile.bat"

msdeploy -verb:sync -source:contentPath="C:\Test1"
    -dest:contentPath="C:\Test2" -postSync:runcommand="c:\MyBatchFile.bat"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文