Batch code for multiple binary execution files in different directories
@echo off
pushd "G:\apache-activemq-5.5.0-bin\apache-activemq-5.5.0\bin\"
Start/min "" G:\apache-activemq-5.5.0-bin\apache-activemq-5.5.0\bin\activemq.bat
popd
Ping 127.0.0.1-n 5
pushd "G:\backup2011-10-31\exchangePlatform\bin"
Start/min "" G:\backup2011-10-31\exchangePlatform\bin\mjs_start.bat
popd
rem pushd "G:\backup2011-10-31\exchangePlatform\bin"
REM Start/min "" G:\backup2011-10-31\exchangePlatform\bin\mjs_start.bat
REM POPD
Ping 127.0.0.1-n 10
pushd "G:\HyCode\uniPlatform\bin"
Start G:\HyCode\uniPlatform\bin\run.bat
popd
Pause
==================================================================================================
Batch code for multiple binary execution files in the same directory (Mjs_start.bat)
@echo off
Echo Starting Tradesys ...
Start/min "" TradeSys1021.exe
Ping 127.0.0.1-n 5
Echo Starting Matchsys ...
Start/min "" MatchSys.exe Run
Ping 127.0.0.1-n 2
Echo Starting Calculatesys ...
Start/min "" CalculateSys.exe Run
Ping 127.0.0.1-n 2
Echo Starting Quotsys ...
Start/min "" QuotSys.exe Run
Ping 127.0.0.1-n 2