11
edits
Changes
Java
,→JRE 7 Uninstall Options
If you want to remove all Java-related software use the following line:
<source lang="xml"><install cmd="wmic product where 'name like 'Java%%'' call uninstall /nointeractive"/></source>
If you would like to uninstall releases before version 7 (they previously added (TM) in the name) use:
<source lang="xml"><install cmd="wmic product where 'name like 'Java(TM)%%'' call uninstall /nointeractive"/></source>
For only version 7 and its sub-releases:
<source lang="xml"><install cmd="wmic product where 'name like 'Java 7%%'' call uninstall /nointeractive"/></source>
=== JRE 7 on 32-bit Hosts ===