How to execute multiple commands in command prompt (with conditions)
c:\ CMD1 & CMD2 - Executes CMD1 and CMD2 (both executes)
c:\ CMD1 && CMD2 - Executes CMD2 only when CMD1 executed successfully
c:\ CMD1 || CMD2 - Executes CMD2 only when CMD1 fails.
Hope this helps!