1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 01:06:00 +02:00
tldr/pages.id/windows/msiexec.md
2021-12-30 07:57:09 -03:00

20 lines
641 B
Markdown

# msiexec
> Memasang, memperbarui, memperbaiki, atau menghapus program Windows melalui file MSI dan MSP yang tersedia.
> Informasi lebih lanjut: <https://docs.microsoft.com/windows-server/administration/windows-commands/msiexec>.
- Memasang sebuah program melalui file MSI:
`msiexec /package {{jalan/menuju/file.msi}}`
- Memasang file MSI dari internet:
`msiexec /package {{https://example.com/installer.msi}}`
- Memasang pembaruan program melalui file MSP:
`msiexec /update {{jalan/menuju/file.msp}}`
- Menghapus pemasangan atau pembaruan program melalui file MSI atau MSP yang tersedia:
`msiexec /uninstall {{jalan/menuju/file}}`