ObjectMatrix
ObjectMatrix

Reputation: 335

MSIEXEC Silent Mode Installation

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

Upvotes: 5

Views: 37414

Answers (1)

i_am_jorf
i_am_jorf

Reputation: 54600

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

Upvotes: 16

Related Questions