Many times over the years, I have seen
where people were having a problem trying to uninstall an application on
their system but it did not appear in Add/Remove Programs. I have
seen this situation has twice just recently.
Fortunately, "Digger" -- a most appropriate handle -- tracked down the solution at MSDN in Aaron Stebner's Weblog. The key documents are
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
and finding the entry that corresponds to what you want to uninstall and then running the "UninstallString" string. The reason is that any time the uninitiated ventures into the registry, even for a search, if something could go wrong, it will go wrong.
Following is an outline of the procedure, consolidated from Aaron Stebner's two documents. For a complete understanding of the process, read the above-referenced documents.
In the event the uninstall is not successful, proceed as follows:
Fortunately, "Digger" -- a most appropriate handle -- tracked down the solution at MSDN in Aaron Stebner's Weblog. The key documents are
- How to uninstall an application when it does not appear in Add/Remove Programs
- Using MsInv to gather information about what is installed on a computer
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
and finding the entry that corresponds to what you want to uninstall and then running the "UninstallString" string. The reason is that any time the uninitiated ventures into the registry, even for a search, if something could go wrong, it will go wrong.
Following is an outline of the procedure, consolidated from Aaron Stebner's two documents. For a complete understanding of the process, read the above-referenced documents.
- Download msiinv.zip
- Extract the contents of msiinv.zip to the folder c:\msiinv on your system
- Click on the Start menu, choose Run, type cmd and click OK
- Run c:\msiinv\msiinv.exe > c:\msiinv_output.txt
- Open the text file in Notepad or Word pad and search for the software to be uninstalled
- The key line is the Product code as shown in Aaron's illustration:
Product code: {7A1ADD0C-17F3-47B8-B033-A06E189C835D} - Click Start > Run > type cmd
- Run msiexec /x {Product_Code}. Using Aaron's example:
msiexec /x {7A1ADD0C-17F3-47B8-B033-A06E189C835D}
In the event the uninstall is not successful, proceed as follows:
- Download the smartmsizap tool
- Extract it to c:\ on your computer
- Again,
from the cmd prompt, run c:\smartmsizap.exe /p {product_code} using the
Product Code value from the MsiInv output. In our example:
Start > Run > c:\smartmsizap.exe /p {7A1ADD0C-17F3-47B8-B033-A06E189C835D}
No comments:
Post a Comment