Files
cheatsheet-tldr/tldr/windows/msiexec

26 lines
658 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# msiexec
> Install, update, repair, or uninstall Windows programs using MSI and MSP package files.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/msiexec>.
- Install a program from its MSI package:
`msiexec /package {{path o ile.msi}}`
- Install a MSI package from a website:
`msiexec /package {{https://example.com/installer.msi}}`
- Install a MSP patch file:
`msiexec /update {{path o ile.msp}}`
- Uninstall a program or patch using their respective MSI or MSP file:
`msiexec /uninstall {{path o ile}}`