Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MSIEXEC Silent Mode Installation

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

like image 916
ObjectMatrix Avatar asked Aug 31 '09 18:08

ObjectMatrix


People also ask

How do I install MSI silently?

You should be able to use the /quiet or /qn options with msiexec to perform a silent install. MSI packages export public properties, which you can set with the PROPERTY=value syntax on the end of the msiexec parameters. You can read the options for msiexec by just running it with no options from Start -> Run.


1 Answers

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
like image 144
i_am_jorf Avatar answered Sep 25 '22 13:09

i_am_jorf