1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 08:15:44 +02:00
tldr/pages/windows/msiexec.md
Emily Grace Seville c52cc074d9
windows/*.md: make placeholders more compatible with CLIP ones (#9872)
* Make placeholders more compatible with CLIP ones

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2023-02-20 15:23:49 +08:00

570 B

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\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}}