diff --git a/pages/windows/msiexec.md b/pages/windows/msiexec.md new file mode 100644 index 0000000000..0e0eb546a5 --- /dev/null +++ b/pages/windows/msiexec.md @@ -0,0 +1,20 @@ +# msiexec + +> Install, update, repair, or uninstall Windows programs using MSI and MSP package files. +> More information: . + +- Install a program from its MSI package: + +`msiexec /package {{path/to/file.msi}}` + +- Install a MSI package from a website: + +`msiexec /package {{https://example.com/installer.msi}}` + +- Install a MSP patch file: + +`msiexec /update {{path/to/file.msp}}` + +- Uninstall a program or patch using their respective MSI or MSP file: + +`msiexec /uninstall {{path/to/file}}`