how to run multiple commands in .cmd file code example
Example: cmd multiple commands
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully