The best way to install an MSP file in silent installation is with the following command line: msiexec /p patchfile.msp REINSTALL=ALL REINSTALLMODE=omus But if you do not give the command line options of REINSTALL and REINSTALLMODE then it will not patch the existing installation package. What it will do is update the locally cached copy of the MSI database. You can also use following command line to install patches like for Adobe etc.: msiexec /update patchfile.msp /qb! If you run the MSP in UI mode then it will patch the installation and will also update the locally cached copy of the installation, because when the dialogs are run they in turn set REINSTALL and REINSTALLMODE. For installation of MSU, which is used as update in Windows Vista and above, please follow this new post on my blog: http://msiworld.blogspot.com.au/2012/04/silent-install-and-uninstall-of-msu.html