MyFile1.bat
invokes MyFile2.bat
twice:
start MyFile2.bat argA, argB, argC
start MyFile2.bat argX, argY, argZ
At this point, how can I wait until both processes spawned by the calls to MyFile2.bat
have completed?
MyFile1.bat
invokes MyFile2.bat
twice:
start MyFile2.bat argA, argB, argC
start MyFile2.bat argX, argY, argZ
At this point, how can I wait until both processes spawned by the calls to MyFile2.bat
have completed?
You can do it like this :
start MyFile2.bat argA, argB, argC
start MyFile2.bat argX, argY, argZ ^& echo.^>End.val ^& exit
:testEnd
if exist end.val (del end.val
echo Process completed
pause)
>nul PING localhost -n 2 -w 1000
goto:testEnd
When the second start2.bat finish is job then a file "End.val" will be created, you just have to test if this file exist, then you know that your process is complete.
If the first myfile2 can take more time to execute then the second you can do the same (with another filename) with the first start myfile2.bat
and make a test more in the :testend
start MyFile2.bat argA, argB, argC ^& echo.^>End1.val ^& exit
start MyFile2.bat argX, argY, argZ ^& echo.^>End.val ^& exit
:testEnd
if exist end.val if exist end1.val (del end.val
del end1.val
echo Process completed
pause)
>nul PING localhost -n 2 -w 1000
goto:testEnd
You may use "status files" to know that; for example, in MyFile1.bat do the following:
echo X > activeProcess.argA
start MyFile2.bat argA, argB, argC
echo X > activeProcess.argX
start MyFile2.bat argX, argY, argZ
:waitForSpawned
if exist activeProcess.* goto waitForSpawned
And insert this line at end of MyFile2.bat:
del activeProcess.%1
You may also insert a ping
delay in the waiting cycle in order to waste less CPU in this loop.
Simple use the Start /WAIT parameter.