IF EXIST java (
start "Qora" java -Xmx256m -Djava.library.path=libs/native -jar Qora.jar
) ELSE (
IF EXIST "%PROGRAMFILES%\Java\jre7" (
start "Qora" "%PROGRAMFILES%\Java\jre7\bin\java.exe" -Xmx256m -Djava.library.path=libs/native -jar Qora.jar
) ELSE (
IF EXIST "%PROGRAMFILES(X86)%\Java\jre7" (
start "Qora" "%PROGRAMFILES(X86)%\Java\jre7\bin\java.exe" -Xmx256m -Djava.library.path=libs/native -jar Qora.jar
) ELSE (
ECHO Java software not found on your system. Please go to http://java.com/en/ to download a copy of Java.
PAUSE
)
)
)
That's actually great that you created this, although I completely know what I am looking at, many new comers that are just used to running an .exe and sitting back will still come on this thread and ask how to get their wallet running. But, what you've created is a great step in the right direction. This should definitely be highlighted on the front page of the OP.