(Note: similar to error 13505 in the Mercurial Eclipse project)
Eclipse inherits the path from your current session.
Open a DOS session and check if the specified notepad session has in its path (which should take into account notepad in C:\Windows\system32\notepad.exe ). Make sure that C: \ Windows \ system32 (or %SystemRoot%\system32 ) is in the first position of your PATH (in case of a side effect with other paths with spaces or special characters in it). If the path is correct, start the eclipse from these DOS windows with the command line and check if the problem persists.
OP emre reports <<24>:
C:\Program Files\NVIDIA Corporation\PhysX\Common; C:\Program Files\Java\jdk1.6.0_20\bin; D:\eclipse-java-helios-sr1-win32\eclipse\android-2.2_r0-windows\android-2.2_r0-windows\tools; C:\Program Files\Java\jdk1.6.0_20\bin
In other words, no %SystemRoot%\system32 .
You need to edit the System variables in the Environment variable the Windows settings and add it first to the PATH variable:
%SystemRoot%\system32
Then you can open a new DOS session by running eclipse and ot should work fine.
source share