Saturday, 28 February 2015

How to Install and Uninstall MSI packages.



Here are few methods to install and uninstall .msi packages.,

Install :

- double click the msi it will act like normal exe installation.

- through commad prompt

                    msiexec.exe /i "C:\Users\testuser\Desktop\advinst.msi"

Uninstall:

- right click the msi setup file and click uninstall

- uninstall from control panel.

- command prompt:
                  
                  msiexec.exe /x "C:\Users\testuser\Desktop\advinst.msi" /qn

No comments: