Java problems.

IV S P E C VI

New Member
Hey guys, I seem to being having a problem with my run.bat files along with java. I play these games called RSPS (Runescape Private Server), everytime I attempt the run the client (run.bat file) it pops up with this:
dhfmft.png

If anyone knows to how fix this, would be much appreciated.
 
Do you actually have java installed?

If so, the easy fix would be to edit the bat file to have the entire path instead of "java" by itself - usually the program is located in a folder like C:\Program Files\Java\JRE\Bin or something (just search for java.exe). When editing the BAT file, though, you need to put the path and "java" in quotation marks, i.e. if you have something like java -x -y -other-parameter %1 %2 %3 %4 you would have "C:\Program Files\Java\JRE\Bin\java" -x -y -other-parameter %1 %2 %3 %4. Otherwise, if there are spaces in the path (which usually is the case as java is usually installed to program files), it won't work.

You could also edit the path environment variable to include the folder where java.exe is located.
 
Back
Top