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=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to