In depth analysis of batch code in C++ that executes multiple exe file methods

  • 2020-04-01 23:35:07
  • OfStack

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
The popd

Ping 127.0.0.1   N -

Pushd "G: \ backup2011-10-31 \ exchangePlatform \ bin"
start   / min "" G: \ backup2011-10-31 \ exchangePlatform \ bin \ mjs_start bat
The 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   The -n 10

Pushd "G: \ HyCode \ uniPlatform \ bin"
start   G: \ HyCode \ uniPlatform \ bin \ run bat
The popd

pause
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Batch code for multiple binary executables in the same directory ( Mjs_start. Bat )
@ echo off

Echo starting tradeSys...
Start/min ""   Exe tradeSys1021.
Ping 127.0.0.1   N -

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


Related articles: