I have multiple batch files. Each batch file opens an exe file and run a command. The command compiles the results in csv format. This all works like heaven.
I am trying to create a master batch which could run each of the batch file one by one. The individual batch file names are as 1.bat, 2.bat . . . .32.bat
I tried,
Call 1.bat
Call 2.bat
.
.
.
Call 32.bat
but it is only running the first command...
I also tried without call, same result.
I am using the following code in each batch file:
Start /D "C:\test 2\" CSC.exe "1.lq"
Start /D "C:\test 2\" CSC.exe "2.lq"
and so on
Can anyone help me crack this?
All I want My master bat to run first batch, on completion run second and so on so forth.
Hope it makes sense.
I really appreciate your help on this guys.
Shei