Java Portable Launcher currently gives a 'cannot find file' error when it is passed a path to a JAR file that is surrounded with double quotes.
For example, launching with this will fail:
JavaPortableLauncher.exe "c:\A folder\with a java JAR file\myfile.jar"
But launching it this way works:
JavaPortableLauncher.exe c:\A folder\with a java JAR file\myfile.jar
This seems a pretty simple problem to solve, and it'd be nice not to have to resort to workarounds like stripping quotes off with another program (or batch file) before calling the launcher.
Thanks for looking into this!