|
|
#1 (permalink) |
|
Guest
Posts: n/a
|
We have 2 websites on our IIS webserver and both have different
FQDNs(fullyqualifieddomains). Each website have the same application with 2 different virtual directories mapped in different physical location(s). But these virtual directory names are same, say myApp. website virtual directory physical location -------------------------------------------------------------------------------------------------- web1 myApp c:/inetpub/wwwroot/ web2 myApp c:/myApp/ my question is when I deploy in silent mode, like the following msiexec /i myApp.msi /qr what are the options I can use in msiexec in order to send it to particular website. I read about TARGETSITE but one of my virtual directory is NOT mapped to IIS root directory, so what should I use value for the TARGETSITE property? Thanks in advance, bullseye |
|
|
|
#2 (permalink) |
|
Guest
Posts: n/a
|
"bullseye" <123bulls@gmail.com> wrote in message news:eacd9139-89fd-47d2-8a53-6001c722ab21@j18g2000yqd.googlegroups.com... > We have 2 websites on our IIS webserver and both have different > FQDNs(fullyqualifieddomains). Each website have the same application > with 2 different virtual directories mapped in different physical > location(s). But these virtual directory names are same, say myApp. > > website virtual directory physical location > -------------------------------------------------------------------------------------------------- > web1 myApp c:/inetpub/wwwroot/ > web2 myApp c:/myApp/ > > > my question is when I deploy in silent mode, like the following > msiexec /i myApp.msi /qr > > what are the options I can use in msiexec in order to send it to > particular website. I read about TARGETSITE but one of my virtual > directory is NOT mapped to IIS root directory, so what should I use > value for the TARGETSITE property? > > Thanks in advance, > > bullseye I await your command. |
|
|
|
#3 (permalink) |
|
Guest
Posts: n/a
|
On 8/18/2010 7:05 PM, Kenneth A. Larsen wrote:
> "bullseye"<123bulls@gmail.com> wrote in message > news:eacd9139-89fd-47d2-8a53-6001c722ab21@j18g2000yqd.googlegroups.com... >> We have 2 websites on our IIS webserver and both have different >> FQDNs(fullyqualifieddomains). Each website have the same application >> with 2 different virtual directories mapped in different physical >> location(s). But these virtual directory names are same, say myApp. >> >> website virtual directory physical location >> -------------------------------------------------------------------------------------------------- >> web1 myApp c:/inetpub/wwwroot/ >> web2 myApp c:/myApp/ >> >> >> my question is when I deploy in silent mode, like the following >> msiexec /i myApp.msi /qr >> >> what are the options I can use in msiexec in order to send it to >> particular website. I read about TARGETSITE but one of my virtual >> directory is NOT mapped to IIS root directory, so what should I use >> value for the TARGETSITE property? >> >> Thanks in advance, >> >> bullseye > > > > > I await your command. > > |
|
|
|
#4 (permalink) |
|
Guest
Posts: n/a
|
After searching I found this useful article, http://tim-stanley.com/post/How-To-I...ific-Port.aspx msiexec /i myapp.msi /qr TARGETSITE=/LM/W3SVC/'website identifier number' this is working, select websites under IIS web server and you can see 'identifer number' on the right hand pane. |
|