1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 11:34:05 +02:00

msiexec: add page (#7513)

This commit is contained in:
Reinhart Previano Koentjoro 2021-12-13 17:21:17 +07:00 committed by GitHub
parent 9b7facc32a
commit bb70cb4194
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/windows/msiexec.md Normal file
View file

@ -0,0 +1,20 @@
# msiexec
> Install, update, repair, or uninstall Windows programs using MSI and MSP package files.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/msiexec>.
- 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}}`