Wait for a process to complete in CMD

I want to write a batch file that executes another batch file, waits for it to complete the process (i.e. wait till the CMD window closes), then starts another application (.exe). How can I do that? I've tried this but it runs both processes simultaneously:

start "" "C:\Program Files\batch1.bat" /w
start "" "C:\Program Files\process1.exe"

P.S: I'm not sure if it matters, but the batch1.bat file that I mentioned executes a group of programs which takes a few seconds to complete.

1 Answer

Your basic error is the positioning of /w in the start command: in your command it is a parameter to batch1, not to start. You should use:

start /w "" "C:\Program Files\batch1.bat"

However, it is more efficient not to start a new cmd process and instead use:

call "C:\Program Files\batch1.bat"
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like