Reputation: 335
How do I install to a non default web site with a silent MSIEXEC installation?
Upvotes: 5
Views: 37414
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