MSIEXEC Silent Mode Installation

こ雲淡風輕ζ 提交于 2019-12-29 01:38:08

问题


How do I install to a non default web site with a silent MSIEXEC installation?


回答1:


Given the lack of information in your question, all I can say is something like this:

msiexec /i YOURPACKAGE.msi /qn

If you need to pass parameters, you can define them on the commandline:

msiexec /i YOURPACKAGE.msi /qn THISWEBSITE=http://example.com


来源:https://stackoverflow.com/questions/1358626/msiexec-silent-mode-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!