@echo off
set START_SERVER="C:\Program Files\Apache\Tomcat_6\bin\startup.bat"
call %START_SERVER%
start http://localhost:8080/MyProject/
How to launch app in browser after server start using batch?
My above script is starting server and launching app.. but both working simultaneously.
- I want to launch app after server startup is done