Where is Java hiding on my PC?

In my efforts to root out the mysterious Java 1.5.0_11 installation I have hiding somewhere on my PC, I completely uninstalled Java.

Now, a search in Explorer turns up nothing, but on the command prompt, if I type "java", it's still there.

If I type java -version it says java version 1.5.0_11.

How do I find it?

3

3 Answers

Use where java to find out where it is. Or

for %x in (java.exe) do @echo %~$PATH:x

Usually it resides in %ProgramFiles%\Java, though.

3

If you're under Windows, launch Java, go into Task Manager, right click on the java.exe process, "Open File Location". This should locate it.

Do a file search for java.exe.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like