Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 392 Bytes

install-an-msi-package-silently.md

File metadata and controls

15 lines (10 loc) · 392 Bytes

Install An MSI Package Silently

Category: Windows

You can install an MSI package silently using the msiexec command with the /i and /quiet (no UI) flags:

msiexec.exe /i "c:\path\to\your\file.msi" /quiet

To instaall an MSI package silently with verbose logging:

msiexec.exe /i "c:\path\to\your\file.msi" /L*V "C:\path\to\package-install.log" /quiet