Using the jPortable Launcher, I am able launch a .jar file using the following syntax:
C:\path\to\JavaPortableLauncher.exe C:\path\to\file.jar
This seems to work as if the following was done from a machine with a localized JVM:
java -jar C:\path\to\file.jar
Sometimes a .jar file needs additional arguments entered for it to work properly. If I add the arguments straight after the path to the .jar file, the launcher treats the arguments as part of the path and says that the .jar file cannot be found.
So my question is: Is it possible to pass arguments with the jPortable Launcher?