简体   繁体   English

运行一些.bat脚本后继续执行

[英]continue execution after running some .bat script

example buil.bat script 示例buil.bat脚本

start /B webdev.webserver.exe /port:3234 /path:C:\projects\src\XYZWeb /VPATH:/XYZWeb

when program run this script also execution stop. 当程序运行此脚本时,也会停止执行。 How to continue execution after running this script. 运行此脚本后如何继续执行。 Problem is that build.bat never end and you must manually close it. 问题是build.bat永远不会结束,您必须手动将其关闭。

i look here http://ss64.com/nt/start.html but no command to conitinue executing while webdev.webserver is running. 我在这里看到http://ss64.com/nt/start.html,但是在webdev.webserver运行时没有命令来执行。

当我添加窗口标题(如您所链接的页面所建议的)以及引号中exe的完整路径时,它对我有用。

start "webserver" /B "<fullpath>\webdev.webserver.exe" /port:3234 /path:C:\projects\src\XYZWeb /VPATH:/XYZWeb

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM