如何在不使用CMD Msiexec命令的情况下以静默模式运行创建的MSI [英] How to run created MSI in silent mode without CMD Msiexec command

查看:233
本文介绍了如何在不使用CMD Msiexec命令的情况下以静默模式运行创建的MSI的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当用户启动msi设置时,如何以静默模式(完全没有UI)实现MSI?

How to implement MSI in silent mode (totally no UI) when user launch the msi setup ?

推荐答案

键是

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆