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

eclipsetaskbarwindows 7

All other apps that can be pinned to the taskbar behave well.
But Eclipse doesn't show recently open projects when I right click it.
It also doesn't allow to pin some projects inside it.
Note that I have the JS version of Eclipse Helios. Which spawns a new and different taskbar icon after loading.

Best Answer

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.

Related Topic