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?