How to disable the Eclipse console on Windows

So, I am changing the -vm argument for eclipse.exe using the eclipse.ini settings file, and now there is a command line console (even if I remove the -vm value).

Does anyone know how to disable the console, so I only have the eclipse GUI and not the console window? I am running MS Windows 7.

EDIT: Solved thanks to Kennet , the problem was using java.exe instead of javaw.exe !!!

+4
source share
1 answer
 eclipse.exe -vm <path-to-java>\javaw.exe 

javaw is not a console version of java

+9
source

Source: https://habr.com/ru/post/1310902/


All Articles