Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

msiexec is command prompt software that installs an MSI program. But I have found that you can install an MSI file from the command line by just typing in the name of the MSI file on the command line.

But in order to uninstall the MSI file, it seems you have to call the msiexec program and give it a /x or /uninstall.

How can I uninstall an MSI from the command line without using the msiexec routine?

share|improve this question
1  
Why would you want to do that? I'm just curious... – 0xA3 Jan 16 '09 at 10:50
As explained below you can actually use the Windows Installer Automation api via a VBScript, but it might be calling msiexec.exe under the hood for all I know (but it looks like it calls straight to msi.dll). – Glytzhkof Oct 14 '09 at 12:07

closed as off topic by SimpleCoder, Mario, plaes, Shikiryu, Sam I am Mar 25 at 21:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

7 Answers

up vote 24 down vote accepted

Short answer: you can't. Use MSIEXEC /x

Long answer: When you run the MSI file directly at the command line, all that's happening is that it runs MSIEXEC for you. This association is stored in the registry. You can see a list of associations by (in Windows Explorer) going to Tools / Folder Options / File Types.

For example, you can run a .DOC file from the command line, and WordPad or WinWord will open it for you.

If you look in the registry under HKEY_CLASSES_ROOT\.msi, you'll see that .MSI files are associated with the ProgID "Msi.Package". If you look in HKEY_CLASSES_ROOT\Msi.Package\shell\Open\command, you'll see the command line that Windows actually uses when you "run" a .MSI file.

share|improve this answer
You actually could by replacing the command in the registry to also contain the option /x. But I'm sure no one wants to do that because if you do you can no longer install an msi by double-clicking on it. – 0xA3 Jan 16 '09 at 10:50

There are a few ways to uninstall an MSI package.


  • If you have access to the original MSI used for the installation, you can simply right click it in Windows Explorer and select Uninstall.
  • As stated above you can do the same by command line: msiexec /x filename.msi /q

  • Just got to mention the normal approach though it is obvious
  • Go start -> run -> appwiz.cpl -> ENTER in order to open the add/remove programs applet (or click add/ remove programs in the control panel)
  • Click "Remove" for the product you want to uninstall.

  • You can locate the required code to pass to msiexec.exe /x by opening regedit.exe at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and search for the application name (or just browse through each sub folder till u find it).
  • When you have found it you can pass it to msiexec as explained above: msiexec.exe /x {0077A7C7-3333-2222-1111-111111111000}

  • MSI strips out all cabs and caches each MSI installed in a super hidden system folder at %SystemRoot%\Installer (you need to show hidden files to see it). Or as Christopher Galpin points out, turn on the "Comments" column in Windows Explorer and select the MSI file.
  • All the MSI files here will have a random name assigned, but you can get information about each MSI by showing the Windows Explorer status bar (View -> Status Bar) and then selecting an MSI. The summary stream from the MSI will be visible at the bottom of the Windows Explorer window.
  • Once you find the right MSI, just right click it and go Uninstall.

  • Using PowerShell:

    $app = Get-WmiObject -Class Win32_Product -Filter "Name = 'YOUR_APP'"
    $app.Uninstall()
    

  • Finally you can uninstall an MSI via the Windows Installer Automation api

    Const msiUILevelNone = 2
    
    Set objInstaller = CreateObject("WindowsInstaller.Installer")
    objInstaller.UILevel = msiUILevelNone
    objInstaller.InstallProduct( "product.msi", "REMOVE=ALL")
    Set objInstaller = Nothing
    
share|improve this answer
In case you want a simpler way to deal with the complicated msiexec.exe syntax, you can use a free tool from Wise described here: serverfault.com/questions/30068/silent-install-of-msi/… – Glytzhkof Aug 17 '11 at 16:24
2  
Regarding %SystemRoot%\Installer, it's much easier to just turn on the "Comments" column. – Christopher Galpin Mar 11 '12 at 16:50
1  
Unfortunately the Windows Installer Automation Api link is dead and Google and the WayBackMachine™ has no cache. Can you update your answer with a new link? Thanks! – Dennis Apr 24 '12 at 17:16
Thanks Even Mien for the note on PowerShell. I was unaware of this option. – Glytzhkof Jan 14 at 10:17

Also remember that an uninstall can be initiated using the WMIC command:

wmic product get name --> This will list the names of all installed apps

wmic product where name='myappsname' call uninstall --> this will uninstall the app.

share|improve this answer
thanks man ! your command is working great :-) – Albert Widjaja Jan 5 '12 at 4:23
note that wmic can take a long time to return results, it looks like it's hung but it's probably not. Here's a great reference page for wmic: quux.wiki.zoho.com/WMIC-Snippets.html – matt wilkie Jan 25 at 23:37

The msi file extension is mapped to msiexec (same way typing a .txt filename on a command prompt launches notepad/default txt file handler to display the file).

Thus typing in a filename with msi extension really runs msiexec with the msi file as argument and takes the default action, install. For that reason, uninstalling requires you to invoke msiexec with uninstall switch to unstall it.

share|improve this answer
wmic product get name

Just gets the cmd stuck... still flashing _ after a couple minutes

in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall, if you can find the folder with the software name you are trying to install (not the one named with ProductCode), the UninstallString points to the application's own uninstaller C:\Program Files\Zune\ZuneSetup.exe /x

share|improve this answer
it can take a long time for the results to return. This shorter scope request takes about 20s on my quad core dual-Xeon win7 machine wmic product where "Vendor like '%Microsoft%'" get Name, Version (taken from stackoverflow.com/a/1483166/14420) – matt wilkie Jan 25 at 23:31

I'm assuming that when you type int file.msi into the command line, Windows is automatically calling msiexec file.msi for you. I'm assuming this because when you type in picture.png it brings up the default picture viewer.

share|improve this answer

I would try the following syntax - it works for me.

msiexec /x filename.msi /q 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.