Pages

Jun 12, 2020

Launch multiple Programms using a Batch File

To launch multiple programms using a batch file under Windows you can use the start command. E.g. to start a Java JAR file and a EXE save the following to a batch file:

start java -jar mygui.jar
start myprog.exe

No comments:

Post a Comment