Reputation: 20916
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 look here http://ss64.com/nt/start.html but no command to conitinue executing while webdev.webserver is running.
Upvotes: 0
Views: 433
Reputation: 8557
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
Upvotes: 1