mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-21 09:02:17 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
25
tldr/windows/msiexec
Normal file
25
tldr/windows/msiexec
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
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 oile.msi}}`
|
||||
|
||||
- Install a MSI package from a website:
|
||||
|
||||
`msiexec /package {{https://example.com/installer.msi}}`
|
||||
|
||||
- Install a MSP patch file:
|
||||
|
||||
`msiexec /update {{path oile.msp}}`
|
||||
|
||||
- Uninstall a program or patch using their respective MSI or MSP file:
|
||||
|
||||
`msiexec /uninstall {{path oile}}`
|
||||
Reference in New Issue
Block a user