Saturday, August 30, 2014

Silent Uninstall of All Java on a Windows Box



Finally figured out a command line method to do a silent uninstall of all Java on a Windows box.  Open a command window as Administrator, then run the following wmic:

wmic product where "name like 'Java %% %%'" call uninstall /nointeractive
That is so much easier than manually uninstalling.

No comments: