m*: add and update Korean translation (#14573)

This commit is contained in:
Chooooo
2024-11-02 20:13:28 +09:00
committed by GitHub
parent 3cabef85fc
commit 87df078649
14 changed files with 294 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
# msiexec
> MSI 및 MSP 패키지 파일을 사용하여 Windows 프로그램 설치, 업데이트, 수리 또는 제거.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/msiexec>.
- MSI 패키지에서 프로그램 설치:
`msiexec /package {{경로\대상\파일.msi}}`
- 웹사이트에서 MSI 패키지 설치:
`msiexec /package {{https://example.com/installer.msi}}`
- MSP 패치 파일 설치:
`msiexec /update {{경로\대상\파일.msp}}`
- 프로그램 또는 패치 제거 (각각의 MSI 또는 MSP 파일 사용):
`msiexec /uninstall {{경로\대상\파일}}`