Thread: JEB 4.18
View Single Post
  #3  
Old 08-07-2022, 00:22
tonyweb tonyweb is offline
Family
 
Join Date: Jan 2009
Posts: 190
Rept. Given: 190
Rept. Rcvd 95 Times in 36 Posts
Thanks Given: 1,910
Thanks Rcvd at 299 Times in 122 Posts
tonyweb Reputation: 95
@Mendax47
Create a new [simpler] batch file in main folder (next to jeb_wincon.bat) so it will always use the actual JAVA_HOME you set (change in the file accordingly):

Code:
@echo off

rem Start-up script for JEB (Windows Console)
set JVMOPT=
if exist "%~dp0jvmopt.txt" set /p JVMOPT=<"%~dp0jvmopt.txt"
rem Manual override for JVM options: uncomment the following line and adjust if necessary
rem set JVMOPT=-Xss4M -Xmx8G

rem *** CHANGE YOUR JAVA_HOME HERE ***
set JAVA_HOME="D:\Programs\JDK 13"
set JAVA=%JAVA_HOME%\bin\java.exe

%JAVA% %JVMOPT% -jar "%~dp0bin\app\jebc.jar" %*

pause
Make sure you point to a 64-bit JVM.
Hope this helps.

Regards,
Tony
__________________
Want to learn unpacking ... but I'm too stupid
Reply With Quote
The Following 5 Users Say Thank You to tonyweb For This Useful Post:
arlequim (08-07-2022), CRC32 (08-07-2022), Mendax47 (08-07-2022), niculaita (08-07-2022), p4r4d0x (08-08-2022)