I have a batch file ("ABC.bat") whose contents are as follows:
x.bat
y.bat
z.bat
Now I want to run all the 3 batch files (x, y and z) whenever ABC.bat is run.
What's happening is when "x.bat" is failing to run for some reason, the other 2 batch files (y and z) are not running. (i.e "ABC.bat" stops its execution there)
I want even if "x.bat" fails, the next batch files should run.
Kindly let me know what are the options to be added or if there is any other way to do it?