Skip to main content

Install, update, repair, or uninstall Windows programs using MSI and MSP package files.

:: To install a program from its MSI package:
msiexec /package <path/to/file.msi>

:: To install a MSI package from a website:
msiexec /package <https://example.com/installer.msi>

:: To install a MSP patch file:
msiexec /update <path/to/file.msp>

:: To uninstall a program or patch using their respective MSI or MSP file:
msiexec /uninstall <path/to/file>