Sorry I don't have an answer for the bulk of this question, but for the
ASP 2.0 part you can set up separate application pools on IIS then
install your webapp to the one that supports Asp 2.0. I don't think you
can make a Wix-based installer set up the AppPool like that, but if you
do it by hand first you are at least half way there.


-Matt


-----Original Message-----
From: Rob MacFadyen [mailto:[EMAIL PROTECTED] 
Sent: Saturday, November 25, 2006 6:00 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] IIS Extension... how to specify ROOT

Hey all,

Here's a component that will setup the IIS metabase for a virtual
directory
that points at the installed files:

<Component 
  Id="VD" 
  Guid="{FCD240E6-F3EA-41b3-B52D-72430CB701A8}"
>
  <iis:WebVirtualDir 
    Id="VDir" 
    Alias="application" 
    Directory="TARGETDIR" 
    WebSite="site1" 
    WebApplication="App01"
  >
    <iis:WebDirProperties 
      Id="DirProps" 
      DefaultDocuments="Default.aspx" />
  </iis:WebVirtualDir>
</Component>

... snip ...

<iis:WebApplication Id="App01" Name="application" />

<iis:WebSite Id="site1" Description="Default website">
  <iis:WebAddress Id="DefaultPort" Port="80" />
</iis:WebSite>


This works nice (well... it would be nice if I could specify ASP.NET 2.0
as
part of the WebApplication config... but that's ok).

My question is... how can I setup this up if I need to install at the
root
level of the website... i.e. not a virtual directory, but the actual
root
level? 

Do I have to create a website to do this? Is there anyway to just update
an
existing website?

Regards,

Rob MacFadyen




------------------------------------------------------------------------
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE
V
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to