简体   繁体   中英

wix MSI doesn't launch when I run it from CMD using /quiet parameter

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

Admin Rights : Please make sure you launch your MSI installer from an elevated command prompt ( cmd.exe ):

  • Search for cmd.exe and right click it and select Run as Administrator .
  • Now run the MSI with the /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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM