So, I want to make a script that will execute 2 .bat files and start some .exe files.
However, the .bat files are supposed to keep running.
I have something like this :
pushd tools\wamp64
start wampmanager.exe
pushd ..\..\server\login
call startLoginServer.bat
pushd ..\test
call startTestServer.bat
start "C:\DEV\P2\Test\client" P2.bin
The problem is that call startLoginServer.bat
will not exit and therefore, I'm stucked here.
How can I run my 2 .bat files and let them keep running. (Ideally, I want them to run in 2 different command prompt windows)
Also, there is probably a better way to handle relative path than using pushd
if you can correct me on this.
Thanks