Waiting until a process created by calling a batch file has completed

23.1k Views Asked by At

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?

4

There are 4 best solutions below

1
On BEST ANSWER

Simple use the Start /WAIT parameter.

start /wait MyFile2.bat argA, argB, argC
start /wait MyFile2.bat argX, argY, argZ
0
On

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
1
On

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.

0
On
start /w cmd /c "start cmd /c MyFile2.bat argA, argB, argC & start cmd /c MyFile2.bat argA, argB, argCt"

According to my tests this should work providing that the MyFile2.bat .Eventually the full paths to the bat files should be used.