I need to create a batch file that changes path to a particular folder and executes a set of another bat files.
My batch file looks as follows:
start cd c:\temp\ command1 command2
But it does not work. It just changes path to C:\Temp but ignores next lines.
How can I fix this?
Thank you.
Put “call” in front of references to other .bat files. Like this,