How to uninstall Java SE from the command line
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
migrated from stackoverflow.com Mar 15 '11 at 9:51
This question came from our site for professional and enthusiast programmers.
add a comment |
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
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 fromControl 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
add a comment |
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
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
java uninstall windows-installer jre jdk
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 fromControl 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
add a comment |
1
Can't you uninstall it fromControl 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
add a comment |
4 Answers
4
active
oldest
votes
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.
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 andreg 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 isREG QUERY "HKLMSoftwareWOW6432NodeJavaSoft"
WOW6432Node
should be afterSOFTWARE
– SimplyInk
Mar 20 '17 at 6:08
add a comment |
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}
add a comment |
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
add a comment |
This is a little time consuming, but how about:
wmic product where "name like 'java se%'" call uninstall
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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 andreg 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 isREG QUERY "HKLMSoftwareWOW6432NodeJavaSoft"
WOW6432Node
should be afterSOFTWARE
– SimplyInk
Mar 20 '17 at 6:08
add a comment |
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.
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 andreg 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 isREG QUERY "HKLMSoftwareWOW6432NodeJavaSoft"
WOW6432Node
should be afterSOFTWARE
– SimplyInk
Mar 20 '17 at 6:08
add a comment |
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.
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.
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 andreg 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 isREG QUERY "HKLMSoftwareWOW6432NodeJavaSoft"
WOW6432Node
should be afterSOFTWARE
– SimplyInk
Mar 20 '17 at 6:08
add a comment |
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 andreg 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 isREG QUERY "HKLMSoftwareWOW6432NodeJavaSoft"
WOW6432Node
should be afterSOFTWARE
– 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
add a comment |
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}
add a comment |
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}
add a comment |
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}
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}
edited Jul 12 '13 at 7:37
Roney Michael
88211120
88211120
answered Jul 12 '13 at 3:01
Andy ChenAndy Chen
1412
1412
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
edited Apr 25 '14 at 16:26
Excellll
11.1k74162
11.1k74162
answered Apr 25 '14 at 16:07
BrandonBrandon
1
1
add a comment |
add a comment |
This is a little time consuming, but how about:
wmic product where "name like 'java se%'" call uninstall
add a comment |
This is a little time consuming, but how about:
wmic product where "name like 'java se%'" call uninstall
add a comment |
This is a little time consuming, but how about:
wmic product where "name like 'java se%'" call uninstall
This is a little time consuming, but how about:
wmic product where "name like 'java se%'" call uninstall
answered Jan 8 at 17:10
js2010js2010
1863
1863
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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