如何通过命令行停止/启动 IIS 7 应用程序?
我想创建一个批处理文件来启动一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.windowsnetworking.com/articles_tutorials /Configuring-IIS-7-command-line-Appcmdexe-Part1.html
将其放入扩展名为
.bat
的文件中。更新
只需将
%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.Update
Just ensure that
appcmd
is available anywhere by adding%windir%\system32\inetsrv\
to thePATH
environment variable of your system. Alternatively, you can use the full path toappcmd.exe
in the batch file.