Hey,
I have two .BAT files . I made a new ALL.BAT file that excecutes the 1.BAT and 2.BAT as follows :
echo "Start 1"
1.BAT
echo "Start2"
2.BAT
echo "End"
But he stops after executing 1.BAT.
1.BAT and 2.BAT contains only an echo.
What is wrong here,
Thanks