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

Kate ·
更新时间:2024-11-10
· 808 次阅读

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



方法 C++ c+ 批处理

需要 登录 后方可回复, 如果你还没有账号请 注册新账号