I start a jar file by batch and want to wait for that tool to finish before I continue with the next batch command. How could I do this?
java -jar "tool.jar" parameter /wait
Would this wait for the tool to end? Or would the jar be executed asynchronously?
If you run a program or another bat file with call, the calling bat file will wait, until the called bat file finished.