Batch commands execution order
Posted
by Dave18
on Stack Overflow
See other posts from Stack Overflow
or by Dave18
Published on 2010-04-17T22:07:31Z
Indexed on
2010/04/17
22:13 UTC
Read the original article
Hit count: 368
I'm looking to run a second batch command from .bat but after the first command has been done.
REN "myfile.txt" "my_file.txt"
start "title" "path"
Here, I want the rename command to be executed before the process I wanted to start that has been terminated or executed. why it doesn't work in sequence order?
© Stack Overflow or respective owner