I have a master batch file which calls another list batch files. I want to wait until all the batch files are executed (cannot say which one will execute faster) and comes to master batch file to execute the remaining.
Example:
a) master.bat b) build.bat
call build.bat start web.bat
post.bat start db.bat
here master.bat calls a file build.bat and build.bat files runs the web & db bat files in parallel and once they are executed, it has to return to master.bat and run the post.bat.
can any one please guide me how to do this.