Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off Eclipse console on Windows

So I change the -vm argument for eclipse.exe using the eclipse.ini settings file, and now there's an command prompt console (even if I remove the -vm value).

Does anyone know how to turn off the console so I only have the eclipse GUI and not the console window? I'm running MS Windows 7.

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

like image 968
engfer Avatar asked Dec 17 '22 00:12

engfer


1 Answers

eclipse.exe -vm <path-to-java>\javaw.exe

javaw is a 'no console version' of java

like image 186
Kennet Avatar answered Dec 24 '22 02:12

Kennet