开发者

continue execution after running some .bat script

example buil.bat script

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.

i 开发者_C百科look here http://ss64.com/nt/start.html but no command to conitinue executing while webdev.webserver is running.


It worked for me when I added the window title (as the page you link suggested), and the full path to the exe in quotes.

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜