How to make Eclipse behave well in the Windows 7 taskbar?

Specify the latest available Java VM in your eclipse.ini. I.e.:

-vm
jdk1.6.0_10\jre\bin\client\jvm.dll
  1. Make sure they are on separate lines
  2. Anything after the “vmargs” is taken to be vm arguments

(More info)

Or alternatively add the java bin folder to your Windows PATH before the “windows32” folder, because otherwise eclipse uses “javaw.exe” in the win32 folder instead of the JDK one.

Leave a Comment