本文介绍了如何在不使用CMD Msiexec命令的情况下以静默模式运行创建的MSI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当用户启动msi设置时,如何以静默模式(完全没有UI)实现MSI?
How to implement MSI in silent mode (totally no UI) when user launch the msi setup ?
推荐答案
键是 msiexec.exe命令行 :
The key is the /QN switch in the msiexec.exe command line:
msiexec.exe /I "C:\Installer.msi" /QN /L*V "C:\msilog.log"
/I = Run installer sequence
/QN = Run totally silently
/L*V = Verbose logging, log everything
这篇关于如何在不使用CMD Msiexec命令的情况下以静默模式运行创建的MSI的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!