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
2009-08-31 18:13:55
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
2009-08-31 20:15:53
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
2009-09-01 01:12:15
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
2009-10-12 20:36:01