I have two batch files which I would like to run at once. So I wrote this:
@echo off
java -jar happyjar.jar
java -jar sadjar.jar
pause
When I run the script, it first runs happyjar, then runs sadjar. Is it possible to run both jars at once without running multiple batch files?