What is cmd's equivalent to Bash's & (ampersand) for running a command without waiting for it to terminate?

Solution 1:

start with the /B option

Start application without creating a new window. The application has ^C handling ignored. Unless the application enables ^C processing, ^Break is the only way to interrupt the application

start /B java -jar jarfile1.jar

start /B java -jar jarfile2.jar

Solution 2:

I like the answer from Nifle better but can't you just spawn a secondary cmd shell? You can do this ad nauseam.

cmd /c cmd /c cmd /c cmd /k echo Hello World!

For a number of reasons, his answer is better, specifically if you want to wait until one process is done (like MSI installation, not so relevant to your case). So, stick with start.