Windows – 无声安装MSI

安装MSI文件的命令行是什么?
Standard Installer Command-Line Options

/quiet

安静的显示选项.

安装程序在不显示用户界面的情况下运行安装.

例子:

msiexec /package Application.msi /quiet
msiexec /uninstall Application.msi /quiet
msiexec /update msipatch.msp /quiet
msiexec /uninstall msipatch.msp /package Application.msi / quiet

注意等效的Windows Installer命令行选项是/ qn.

msiexec

运行此命令以查找有关安装选项的更多信息.

相关文章

Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...
Windows文件操作基础代码 Windows下对文件进行操作使用的一段...
Winpcap基础代码 使用Winpcap进行网络数据的截获和发送都需要...
使用vbs脚本进行批量编码转换 最近需要使用SourceInsight查看...