Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/windows/msiexec Normal file
View 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 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}}`