tags:

views:

1621

answers:

1

How to install to a non default web site with a silent MSIEXEC installation? Thank You

+3  A: 

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
jeffamaphone
I want to install on a "target web site" (there are multiple web sites)So, I tried something followingmsiexec /i YOURPACKAGE.msi TARGETSITE = LN/W3SVC/556025883 /qnThat didn't work for me.thanks
Well it will only work if your MSI is designed to do the right thing when you set that variable. I think you need to explain what you mean be "install on a target website" first, because that doesn't make any sense.
jeffamaphone
I used orca.exe to peek inside the "Property" section of the .msi file. Then you can set any of the the UPPERCASE properties listed there; either on the command line or in the msi itself using orca.
twopoint718

related questions