How to remove Java ME SDK from Windows 7 x64?

I am trying to remove the Java ME SDK from Windows 7 x64, but this does not work for me.

If I select Uninstall , I get a progress bar, then it quits, but the software still exists.

The first few times I did this, I got the same error message as in I need help UNINSTALLING Java ME SDK :

 ... show message dialog title: Critical Error message: Cannot load native library from path: native/jmesdk/windows/windows-x86.dll Exception: java.lang.UnsatisfiedLinkError: C:\Users\Jonas\AppData\Local\Temp\nbi-8367277139934329064.tmp: Can't load IA 32-bit .dll on a AMD 64-bit platform 
+8
java-me uninstall
source share
6 answers

I had the same problem and I figured it out. :)

This is because you have a 64-bit JRE installed. Either delete it, or redirect the J2ME uninstaller in some way to use the 32-bit JRE on your system so that the 32-bit uninstaller can run instead of the 64-bit uninstaller.

+4
source share

In calling for the uninstaller to use the 32-bit JRE, the configuration that I tried to execute failed to execute:

a) Set the PATH environment variable to the 32-bit JRE b) Edit the Windows registry in HKEY_LOCAL_MACHINE \ SOFTWARE \ JavaSoft \ Java Runtime Environment \ 1.6 to point to the 32-bit JRE.

In my last attempt, I renamed \ Program Files \ Java to Java2, and the uninstaller must have searched for \ Program Files (x86) \ Java, a 32-bit JRE and deleted the job.

Seriously, Sun / Oracle. Check out your products.
+7
source share

I had the same problem and I understood the solution. As mentioned above, you need to make sure that the J2ME nonistaller recognizes only Java x86. The easiest way I found, instead of ignoring Java x64, you only need to temporarily rename your Java x64 installation folder to whatever you want. That is, rename the folder C: \ Program Files \ Java to, for example, C: \ Program Files \ JavaTEMP.

Now run nonistaller. When finished, rename the folder back to back. It's all.

Hope I helped.

+2
source share

Good day,

It turns out I had exactly the same problem, uninstall java (TM) 7 64bit and find the 32-bit installation to install java this download remove it and try to install Sun Java Wireless Toolkit and delete it correctly.

Buenas tardes,

Result for an accurate verification of access rights, des instale java (TM) 7 64bit y busque el instalador java de 32 bits osea este descargar lo install and implement the Sun Java Wireless Toolkit y des instalo correctamente.

0
source share

Just follow these steps and you will do the following:

1) Click on the link below and click on any of the ... i586.exe link according to your system http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html

2) Install the software without changing the default settings.

3) Run the cmd command and enter the following:

 C:\Java_ME_platform_SDK_3.0\uninstall.exe --javahome "C:\Program Files (x86)\Java\jre8" 

4) [optional] remove java 8 from the control panel that you downloaded to remove the above software.

Congratulations .. You just did it!

Thanks for reading. Any suggestions or greetings are welcome.

0
source share

Instead of temporarily moving the x64 JRE, just tell the J2ME SDK developer to use the 32-bit JRE:

 C:\Java_ME_platform_SDK_3.0\uninstall.exe --javahome "C:\Program Files (x86)\Java\jre7" 

Note that this provides the path to the JRE in the "Program Files (x86)" directory, which is a 32-bit option. I only have the Java 7 JRE, but this should also work with the Java 6 JRE.

-one
source share

Source: https://habr.com/ru/post/650872/


All Articles