深入分析C++中执行多个exe文件方法的批处理代码介绍

时间:2022-06-14 06:28:30

不同目录下的多个二进制执行文件的批处理代码
 
@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
==================================================================================================
相同同目录下的多个二进制执行文件的批处理代码(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