-
Hi, I'm using xdm for several years. In some cases, xdman.jar on a usb drive. Lately, I found a portable version of a game that uses java environnement and works just fine on theses computers. So I tried to copy runtime, libraries directory, having fun with the launching batch file to achieve nothing but a "choose an application to open xdman.jar" window. I tried to launch-it without any parameters, in a cmd window, with the good locations of both javaw.exe and xdman.jar, it still doesn't work ("open with" window still popups). I'm no developper, nor good at batch files or java-thing, but I'd like to make it work and share the solution (if it's ok with copyright things ;) ) Any clue ? Thx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, It worked this way :
"%JAVA% " -jar xdman.jar Hope this is not as useless as it seems. :D |
Beta Was this translation helpful? Give feedback.
Hello,
It worked this way :
`SET "DIR=%cd%"
SET "JAVA_HOME=%DIR%\java-runtime"
SET "JAVA=%JAVA_HOME%\bin\javaw.exe"
"%JAVA% " -jar xdman.jar
`
It's working on a Windows 64 Family without any java environnement, with a portable firefox with XDM Browser Monitor.
Hope this is not as useless as it seems. :D