I have a batch scripts that starts multiple processes (partly other batch files) in background via
start /b /min command1.exe some params
start /b /min command2.bat some params
start /b /min command3.exe some params
at the end of the top level batch script I would like to wait until all processes are completed.
Is there any way to achieve this without implementing special means within the called programs?