I have a batch file which has several commands as follows;
XCOPY
DEL
RMDIR
anotherBatch.bat
XCOPY
DEL
RMDIR
As you can see, in between there is a call to another batch file (anotherBatch.bat), which does some other processing.
Now my question is after anotherBatch gets executed, the control never returns back to the original batch file and it just ends there.
How do I make sure that the control is returned back ?