Cannot Install JDK

2

For the life of me, I can't install the JDK on Windows Vista. I keep getting the error, "This Software Has Already Been Installed on Your Computer. Would you like to reinstall it?" Problem is, it's evidently not on my computer, since I can't a) run Eclipse - I get "Could Not Find Java SE Runtime Environment" or b) Find any reference to Java from the command line when typing java -version - I get "Error opening registry key 'Registry/JavaSoft/Java Runtime Environment." Any ideas?

Vince

Posted 2010-04-07T04:04:41.423

Reputation:

Did you remember to add it to your PATH? You need to edit the environment variable "PATH" and have it point to the folder containing "java", "javac", etc. – Michael Aaron Safyan – 2010-04-07T04:12:36.247

Just run command prompt and set path - SET PATH=%PATH%;<Java install directory>\bin\ – Tejaswi Yerukalapudi – 2010-04-07T04:28:15.583

Answers

3

Go to regedit and then go to HKEY_CLASSES_ROOT\Installer\Products\ look for Development kit and delete the key

Gil

Posted 2010-04-07T04:04:41.423

Reputation: 31

This tip helped me on Windows 8.1. The Microsoft tool to fix (un)installers is not available anymore. CCleaner did not help. Manually deleting the entries worked fine. - Thanks – Bruno Ranschaert – 2013-10-20T13:34:45.033

1

You probably just need to set your "PATH" environment variable as explained in the Java 6.0 Installation Notes for your platform. This will cure the problem for running "java" and "javac" from the command line and for running Eclipse.

You should be able to confirm that Java is installed by going to the relevant Windows control panel (whose name temporarily escapes me) and looking for the JDK / JRE in the list of installed software.

Stephen C

Posted 2010-04-07T04:04:41.423

Reputation: 355

0

First check your PATH environment variable (my computer-> properties->Advanced, environment variables) to see what java executable is in your path. If it is something obsolete, clear it up. second, as @Stephen C says, un-install your version that is apparently in your computer. Goto control panel-> Add/remove programs -> JRE/JDK then un install.

Then try downloading latest Java 2 standard edition installer

Good luck!

ring bearer

Posted 2010-04-07T04:04:41.423

Reputation: 329