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