I have an out-of-of-the-box software tool that I developed in Java. This software requires a fair amount of memory so it must be ran with the -Xmx1024M Java option otherwise it will crash. The customer will run a program named start.jar whose only command is to run the system command "java -Xmx1024M -jar myProgram.jar"
This has worked for Windows XP and Vista however the latest Java update for Windows 7 doesn't put the java/bin directory in the system path. This results in the command line reporting that java is not a recognized command.
My question is how to best resolve this issue? I realize I could give the customer instructions on how to put their java/bin directory in the system path however I think that is asking way too much(the target customer is not technically adept).