19Dec/080
Use the CALL command when nesting batch files
When nesting batch files, you must use the CALL command
first.bat
echo Begin first.bat CALL second.bat echo End first.batÂ
If the "CALL" command is not used, "echo End first.bat" will never be executed.