如何通过命令行停止/启动 IIS 7 应用程序?

发布于 2024-12-24 22:27:25 字数 87 浏览 0 评论 0原文

我想创建一个批处理文件来启动一个 IIS 应用程序并停止另一个应用程序。

如何使用命令行来完成它?

如何将其合并到批处理文件中?

I would like to create a batch file to start one IIS application, and stop another one.

How it can be done using command line?

How to combined it in batch file?

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

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

发布评论

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

评论(1

治碍 2024-12-31 22:27:25

http://www.windowsnetworking.com/articles_tutorials /Configuring-IIS-7-command-line-Appcmdexe-Part1.html

将其放入扩展名为 .bat 的文件中。

@echo off

appcmd start sites "site1"
appcmd stop sites "site2"

更新

只需将 %windir%\system32\inetsrv\ 添加到 PATH 环境即可确保 appcmd 在任何地方都可用您系统的变量。或者,您可以在批处理文件中使用 appcmd.exe 的完整路径。

http://www.windowsnetworking.com/articles_tutorials/Configuring-IIS-7-command-line-Appcmdexe-Part1.html

Put this into a file with .bat extension.

@echo off

appcmd start sites "site1"
appcmd stop sites "site2"

Update

Just ensure that appcmd is available anywhere by adding %windir%\system32\inetsrv\ to the PATH environment variable of your system. Alternatively, you can use the full path to appcmd.exe in the batch file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文