I have one batch file which runs multiple batch files. I use the CALL statement in this file. But after execution one batch file I have to press any key to run other batch file. Is there any posibility how to disable this condition to press any key after call every single batch?
P.S. I need "press any key" when I run single batch.
There is an example of the main batch file
@echo off
echo This batch runs all scripts
CALL A.bat
CALL B.bat
CALL C.bat