MSI (Windows installer)
Also known as: MSI file, .msi installer, Windows Installer package
An MSI file is a Windows Installer package — a database of files, registry entries, and instructions that the Windows Installer service uses to install, repair, or remove a program cleanly.
- Windows Installer package (files + registry + rules)
- Supports clean repair and uninstall
- Common for enterprise software deployment
A structured installer
Unlike a plain setup.exe, an MSI is a structured package read by the built-in Windows Installer engine. It records exactly what gets installed — files, shortcuts, registry keys — so Windows can repair or uninstall the program reliably later.
This structure also makes MSIs convenient for IT to deploy across many machines.
Installing and managing MSI files
Double-click an MSI to launch the installer, or run it silently from the command line for automated deployment. Installed MSI apps appear in Settings > Apps for removal.
As with any installer, only run MSIs from sources you trust, since they make system changes.