T
Tony
Guest
You need to be careful when running batch files, especially if within the batch it starts another batch. If you want to run a batch from within a batch but want further processing done in the initail batch, then you must CALL the second batch. The second batch becomes a child process of the first and will return focus back to the first when finished. IE: ... ... CALL prog2.bat ... ... If you don't, then the process that started the inital batch (your OS-COMMAND) will finish at the point of starting the second batch and the second batch will run without a parent process.
Continue reading...
Continue reading...