How to uninstall Java SE from the command line












10















Oracle states that the Java SE installer is built using MSI, but the help page, rather unhelpfully doesn't list uninstall options.



I need to do a command line uninstall, and I can't figure out or find relevant the options for 1.6.21



I've tried wrapping the installer .exe in msiexec using msiexec /q /x <jre>.exe, but this just reports that the installation package could not be opened.



Running the installer .exe with the /s /x option just hangs.



Edited to add:
msiexec /x {3248F0A8-6813-11D6-A77B-00B0D0160021} /q => "This action is only valid for products that are urrently installed"



Anyone got the right command line?










share|improve this question















migrated from stackoverflow.com Mar 15 '11 at 9:51


This question came from our site for professional and enthusiast programmers.











  • 1





    Can't you uninstall it from Control Panel -> Add/Remove Programs

    – Nishan
    Mar 15 '11 at 9:19






  • 2





    It's for a compute cluster so ideally it needs to be command line uninstall.

    – nick3216
    Mar 15 '11 at 9:24
















10















Oracle states that the Java SE installer is built using MSI, but the help page, rather unhelpfully doesn't list uninstall options.



I need to do a command line uninstall, and I can't figure out or find relevant the options for 1.6.21



I've tried wrapping the installer .exe in msiexec using msiexec /q /x <jre>.exe, but this just reports that the installation package could not be opened.



Running the installer .exe with the /s /x option just hangs.



Edited to add:
msiexec /x {3248F0A8-6813-11D6-A77B-00B0D0160021} /q => "This action is only valid for products that are urrently installed"



Anyone got the right command line?










share|improve this question















migrated from stackoverflow.com Mar 15 '11 at 9:51


This question came from our site for professional and enthusiast programmers.











  • 1





    Can't you uninstall it from Control Panel -> Add/Remove Programs

    – Nishan
    Mar 15 '11 at 9:19






  • 2





    It's for a compute cluster so ideally it needs to be command line uninstall.

    – nick3216
    Mar 15 '11 at 9:24














10












10








10


2






Oracle states that the Java SE installer is built using MSI, but the help page, rather unhelpfully doesn't list uninstall options.



I need to do a command line uninstall, and I can't figure out or find relevant the options for 1.6.21



I've tried wrapping the installer .exe in msiexec using msiexec /q /x <jre>.exe, but this just reports that the installation package could not be opened.



Running the installer .exe with the /s /x option just hangs.



Edited to add:
msiexec /x {3248F0A8-6813-11D6-A77B-00B0D0160021} /q => "This action is only valid for products that are urrently installed"



Anyone got the right command line?










share|improve this question
















Oracle states that the Java SE installer is built using MSI, but the help page, rather unhelpfully doesn't list uninstall options.



I need to do a command line uninstall, and I can't figure out or find relevant the options for 1.6.21



I've tried wrapping the installer .exe in msiexec using msiexec /q /x <jre>.exe, but this just reports that the installation package could not be opened.



Running the installer .exe with the /s /x option just hangs.



Edited to add:
msiexec /x {3248F0A8-6813-11D6-A77B-00B0D0160021} /q => "This action is only valid for products that are urrently installed"



Anyone got the right command line?







java uninstall windows-installer jre jdk






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 6 '12 at 18:11









kinokijuf

6,70284487




6,70284487










asked Mar 15 '11 at 8:51









nick3216nick3216

207126




207126




migrated from stackoverflow.com Mar 15 '11 at 9:51


This question came from our site for professional and enthusiast programmers.






migrated from stackoverflow.com Mar 15 '11 at 9:51


This question came from our site for professional and enthusiast programmers.










  • 1





    Can't you uninstall it from Control Panel -> Add/Remove Programs

    – Nishan
    Mar 15 '11 at 9:19






  • 2





    It's for a compute cluster so ideally it needs to be command line uninstall.

    – nick3216
    Mar 15 '11 at 9:24














  • 1





    Can't you uninstall it from Control Panel -> Add/Remove Programs

    – Nishan
    Mar 15 '11 at 9:19






  • 2





    It's for a compute cluster so ideally it needs to be command line uninstall.

    – nick3216
    Mar 15 '11 at 9:24








1




1





Can't you uninstall it from Control Panel -> Add/Remove Programs

– Nishan
Mar 15 '11 at 9:19





Can't you uninstall it from Control Panel -> Add/Remove Programs

– Nishan
Mar 15 '11 at 9:19




2




2





It's for a compute cluster so ideally it needs to be command line uninstall.

– nick3216
Mar 15 '11 at 9:24





It's for a compute cluster so ideally it needs to be command line uninstall.

– nick3216
Mar 15 '11 at 9:24










4 Answers
4






active

oldest

votes


















8














You can find the correct product code to pass to msiexec /x by opening in the registry (regedit). Open the key:



HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This should show which subkey the Java is located under. One of the keys is "UninstallString." Use this command to uninstall Java. Note however, this will only work on other machines if the exact same version of Java is installed.






share|improve this answer
























  • Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

    – nick3216
    Mar 16 '11 at 9:45













  • hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

    – nick3216
    Mar 16 '11 at 10:07











  • +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

    – Eddie B
    Mar 15 '13 at 2:57











  • HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

    – uniquegeek
    Jan 15 '17 at 0:57













  • referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

    – SimplyInk
    Mar 20 '17 at 6:08





















4














There are 2 places where you might find the product code:



HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products4EA42A62D9304AC4784BF238120662FFInstallProperties


or



HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


You should be able to find the uninstall string from the key UninstallString; something like: MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83216026FF}






share|improve this answer

































    0














    FYI if you are on Windows Server 2012 Core and trying to find the uninstall string for Java 7, go to following place in the registry to find the uninstall string.



    HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstall





    share|improve this answer

































      0














      This is a little time consuming, but how about:



      wmic product where "name like 'java se%'" call uninstall





      share|improve this answer























        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "3"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f257788%2fhow-to-uninstall-java-se-from-the-command-line%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        8














        You can find the correct product code to pass to msiexec /x by opening in the registry (regedit). Open the key:



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


        Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This should show which subkey the Java is located under. One of the keys is "UninstallString." Use this command to uninstall Java. Note however, this will only work on other machines if the exact same version of Java is installed.






        share|improve this answer
























        • Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

          – nick3216
          Mar 16 '11 at 9:45













        • hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

          – nick3216
          Mar 16 '11 at 10:07











        • +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

          – Eddie B
          Mar 15 '13 at 2:57











        • HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

          – uniquegeek
          Jan 15 '17 at 0:57













        • referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

          – SimplyInk
          Mar 20 '17 at 6:08


















        8














        You can find the correct product code to pass to msiexec /x by opening in the registry (regedit). Open the key:



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


        Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This should show which subkey the Java is located under. One of the keys is "UninstallString." Use this command to uninstall Java. Note however, this will only work on other machines if the exact same version of Java is installed.






        share|improve this answer
























        • Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

          – nick3216
          Mar 16 '11 at 9:45













        • hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

          – nick3216
          Mar 16 '11 at 10:07











        • +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

          – Eddie B
          Mar 15 '13 at 2:57











        • HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

          – uniquegeek
          Jan 15 '17 at 0:57













        • referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

          – SimplyInk
          Mar 20 '17 at 6:08
















        8












        8








        8







        You can find the correct product code to pass to msiexec /x by opening in the registry (regedit). Open the key:



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


        Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This should show which subkey the Java is located under. One of the keys is "UninstallString." Use this command to uninstall Java. Note however, this will only work on other machines if the exact same version of Java is installed.






        share|improve this answer













        You can find the correct product code to pass to msiexec /x by opening in the registry (regedit). Open the key:



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


        Select the Uninstall key and "Find" from the "Edit" menu. Search for "Java." This should show which subkey the Java is located under. One of the keys is "UninstallString." Use this command to uninstall Java. Note however, this will only work on other machines if the exact same version of Java is installed.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 15 '11 at 12:39









        heavydheavyd

        50.2k12123155




        50.2k12123155













        • Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

          – nick3216
          Mar 16 '11 at 9:45













        • hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

          – nick3216
          Mar 16 '11 at 10:07











        • +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

          – Eddie B
          Mar 15 '13 at 2:57











        • HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

          – uniquegeek
          Jan 15 '17 at 0:57













        • referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

          – SimplyInk
          Mar 20 '17 at 6:08





















        • Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

          – nick3216
          Mar 16 '11 at 9:45













        • hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

          – nick3216
          Mar 16 '11 at 10:07











        • +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

          – Eddie B
          Mar 15 '13 at 2:57











        • HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

          – uniquegeek
          Jan 15 '17 at 0:57













        • referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

          – SimplyInk
          Mar 20 '17 at 6:08



















        Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

        – nick3216
        Mar 16 '11 at 9:45







        Installing JDK 1.6u21 onto a local PC allowed me to see that the GUID isn't the one I was expecting (based on Oracle docs & Server Fault). A JRE/JDK difference. reg query HKLMSoftwareMicrosoftWindowsCurrentVersionUninstall{32A3A4F4-B792-11D6-A78A-00B0D0160210} /v uninstallString

        – nick3216
        Mar 16 '11 at 9:45















        hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

        – nick3216
        Mar 16 '11 at 10:07





        hmm, on the compute nodes MSIEXEC reports that action is only valid for products that are installed and reg query /s HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall has no record of the JDK being installed.

        – nick3216
        Mar 16 '11 at 10:07













        +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

        – Eddie B
        Mar 15 '13 at 2:57





        +1 This method worked well to uninstall a botched SQL Server 2012 rsfx driver package.

        – Eddie B
        Mar 15 '13 at 2:57













        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

        – uniquegeek
        Jan 15 '17 at 0:57







        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall references the 64-bit programs. It is likely you may also need to check HKEY_LOCAL_MACHINEWOW6432NodeSOFTWAREMicrosoftWindowsCurrentVersionUninstall for 32-bit programs. Java can be installed as either, or both at the same time

        – uniquegeek
        Jan 15 '17 at 0:57















        referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

        – SimplyInk
        Mar 20 '17 at 6:08







        referencing above registry key, the correct path for my Win10 machine is REG QUERY "HKLMSoftwareWOW6432NodeJavaSoft" WOW6432Node should be after SOFTWARE

        – SimplyInk
        Mar 20 '17 at 6:08















        4














        There are 2 places where you might find the product code:



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products4EA42A62D9304AC4784BF238120662FFInstallProperties


        or



        HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


        You should be able to find the uninstall string from the key UninstallString; something like: MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83216026FF}






        share|improve this answer






























          4














          There are 2 places where you might find the product code:



          HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products4EA42A62D9304AC4784BF238120662FFInstallProperties


          or



          HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


          You should be able to find the uninstall string from the key UninstallString; something like: MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83216026FF}






          share|improve this answer




























            4












            4








            4







            There are 2 places where you might find the product code:



            HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products4EA42A62D9304AC4784BF238120662FFInstallProperties


            or



            HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


            You should be able to find the uninstall string from the key UninstallString; something like: MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83216026FF}






            share|improve this answer















            There are 2 places where you might find the product code:



            HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products4EA42A62D9304AC4784BF238120662FFInstallProperties


            or



            HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall


            You should be able to find the uninstall string from the key UninstallString; something like: MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83216026FF}







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jul 12 '13 at 7:37









            Roney Michael

            88211120




            88211120










            answered Jul 12 '13 at 3:01









            Andy ChenAndy Chen

            1412




            1412























                0














                FYI if you are on Windows Server 2012 Core and trying to find the uninstall string for Java 7, go to following place in the registry to find the uninstall string.



                HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstall





                share|improve this answer






























                  0














                  FYI if you are on Windows Server 2012 Core and trying to find the uninstall string for Java 7, go to following place in the registry to find the uninstall string.



                  HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstall





                  share|improve this answer




























                    0












                    0








                    0







                    FYI if you are on Windows Server 2012 Core and trying to find the uninstall string for Java 7, go to following place in the registry to find the uninstall string.



                    HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstall





                    share|improve this answer















                    FYI if you are on Windows Server 2012 Core and trying to find the uninstall string for Java 7, go to following place in the registry to find the uninstall string.



                    HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstall






                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Apr 25 '14 at 16:26









                    Excellll

                    11.1k74162




                    11.1k74162










                    answered Apr 25 '14 at 16:07









                    BrandonBrandon

                    1




                    1























                        0














                        This is a little time consuming, but how about:



                        wmic product where "name like 'java se%'" call uninstall





                        share|improve this answer




























                          0














                          This is a little time consuming, but how about:



                          wmic product where "name like 'java se%'" call uninstall





                          share|improve this answer


























                            0












                            0








                            0







                            This is a little time consuming, but how about:



                            wmic product where "name like 'java se%'" call uninstall





                            share|improve this answer













                            This is a little time consuming, but how about:



                            wmic product where "name like 'java se%'" call uninstall






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 8 at 17:10









                            js2010js2010

                            1863




                            1863






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Super User!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f257788%2fhow-to-uninstall-java-se-from-the-command-line%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                                is 'sed' thread safe

                                How to make a Squid Proxy server?