Reputation: 110
I created MSI installer using WiX.
when I double clicked it, it works, when I install it through CMD it also works, but when I try to install it from CMD using /quiet parameter it does not launch,
I want to launch my installer from CMD like this : setup.msi /quiet
how to do ?
Please help
Upvotes: 1
Views: 289
Reputation: 42206
Admin Rights: Please make sure you launch your MSI installer from an elevated command prompt (cmd.exe
):
cmd.exe
and right click it and select Run as Administrator
./quiet
parameter.Debugging & Logging: It helps to create a log file to determine what is going on. Please see information on MSI logging here. You can enable logging for all MSI operations, or define logging via the command line or via settings inside the MSI. Please visit the link for details.
Express Logging (Verbose): Simplest possible, verbose logging from cmd.exe
:
msiexec.exe /i C:\Path\Your.msi /L*v C:\Your.log
Upvotes: 1