Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a MSI package that I need to install if the package is not already installed. Also I need to install it silently. The package prompts user for:

  • Installation location (C:\Program Files\Foobar)
  • Install type: minimal and full (minimal)

I need to override these two parameters using command line parameters or some other method. So how do I go about these two issues. I'll use VBScript for scripting.

share|improve this question

1 Answer

up vote 5 down vote accepted

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.

For example, this command installs a package with no UI and no reboot, with a log and two properties:

msiexec /i c:\path\to\package.msi /quiet /qn /norestart /log c:\path\to\install.log PROPERTY1=value1 PROPERTY2=value2

You can read the options for msiexec by just running it with no options from Start -> Run.

share|improve this answer
Is there a way to find a list of acceptable parameters (PROPERTY1 and PROPERTY2 in your example)? – Salman A Dec 19 '11 at 11:07
Here is the predefined properties list: msdn.microsoft.com/en-us/library/windows/desktop/… The installation folder property is different for each setup authoring tool. What did you use to create the MSI? – Cosmin Pirvu Dec 19 '11 at 13:17
@Cosmin: MSI consists of runtime DLLs of a payment system (not created by me). I am looking at a tool called Ocra to dissect the MSI, it gave me a hint about a variable called "INSTALLLOCATION". I am checking. – Salman A Dec 19 '11 at 13:30
Then INSTALLLOCATION is most likely the installer property associated with the main installation folder. Try setting it through msiexec command line. – Cosmin Pirvu Dec 19 '11 at 13:51
@SalmanA - Ocra is a great tool. It should be able to dissect all the custom UI elements. If I remember correctly, all custom UI input elements in MSI packages have a variable attached to them which is exported, so you can access the value via the command line. – Polynomial Dec 19 '11 at 17:52
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.