I have a java web start game which people with Java happily play but many folks don’t have Java and don’t want to install Java. I tried zipping the jar and including java.exe in the zip, then I had a small windows bat file that calls the java.exe to run the jar. It worked fine on my machine but then I already have Java. It didn’t work on PC’s with no Java or an out of date Java.
Bat file is:
[quote]java.exe -jar -Dsun.java2d.noddraw=true AlienSwarm.jar FULLSCREEN 2>tmp.log
exit;
[/quote]
Any ideas?