MSIEXEC Silent Mode Installation

前端 未结 1 1838
栀梦
栀梦 2020-12-11 19:46

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

相关标签:
1条回答
  • 2020-12-11 20:01

    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
    
    0 讨论(0)
提交回复
热议问题