I have a .bat file in windows that does three things
cmd1 arg1 arg2
cmd2 arg3
cmd3 arg4 arg5 arg6
Sometimes cmd1 can fail and that's fine, I would like to carry on and execute cmd2 and cmd3. But my bat stops at cmd1. How can I avoid this?
Update for clarity - these are not other .bat files, they are exe commands. Hopefully I don't have to build a tree of .bat files just to achieve this.