2

我在下面有这个,但我想更改它,以便将 Web 应用程序安装到现有网站。目前它会安装网站和所有文件,但在卸载时也会删除所有文件,我只想将文件添加为 Web 应用程序。我该怎么做呢?

<?xml version="1.0" encoding="utf-8" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"
     xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">

  <Fragment>
    <DirectoryRef Id="INSTALLLOCATION">
      <Component Id="C_IISWebsite" Guid="{138B3868-24E8-4D7B-8793-0D254AF349D4}" KeyPath="yes">
        <!-- This does not create a user, it's just an object that's referenced by the WebAppPool component -->
        <util:User Id="WebAppPoolUser" CreateUser="no" Name="[WEB_APP_POOL_IDENTITY_USERNAME]"
                   Password="[WEB_APP_POOL_IDENTITY_PWD]" Domain="[WEB_APP_POOL_IDENTITY_DOMAIN]"/>

        <!-- The "Identity" attritbute below needs to be set to "other" to use the util:User defined above -->
        <iis:WebAppPool Id="WebAppPool" Name="[WEB_APP_POOL_NAME]" Identity="other" User="WebAppPoolUser"/>

        <iis:WebSite Id="DefaultWebSite" Description="[WEBSITE_NAME]" Directory="INSTALLLOCATION" >
          <iis:WebAddress Id="AllUnassigned" Port="80"/>
        </iis:WebSite>

        <iis:WebVirtualDir Id="My.VirtualDir" Alias="mdxWebSite" Directory="INSTALLLOCATION" WebSite="DefaultWebSite">
          <iis:WebApplication Id="Application" Name="mdxWebSite" WebAppPool="WebAppPool" />
        </iis:WebVirtualDir>
      </Component>
    </DirectoryRef>
  </Fragment>
</Wix>
4

2 回答 2

2

我认为您的问题与安装程序不知道要卸载什么有关,因此删除了默认或父网站。看看John Robbins 的这个示例,关键是将配置存储在注册表中,以便卸载知道要删除什么,在你的<Component> ... </Compoonent>元素中执行以下操作,不要忘记插入适当的名称/数据和指导。

<!--The component for installer properties I need to save so they can be used on the uninstall.-->
<Component Id="SetupRegistryValues" Guid="{...}" KeyPath="yes" >
<RegistryValue Root="HKLM" Key="SOFTWARE\CompanyName\ProductName\Install" Name="WebAppName" Value="[WEB_APP_NAME]" Type="string" />
<RegistryValue Root="HKLM" Key="SOFTWARE\CompanyName\ProductName\Install" Name="WebSiteName" Value="[WEBSITE_NAME]" Type="string" />
于 2012-11-16T15:48:53.467 回答
1

如果您想将 Web 应用程序和虚拟目录安装到现有网站,并且不想在卸载产品时删除您的网站;然后在单独的片段下定义您的网站(不在任何组件内)。如下:

  <Fragment>
    <iis:WebSite Id="XYZ_WebSite" Description="Default Web Site">
      <iis:WebAddress Id="AllUnassigned" Port="80" />
    </iis:WebSite>
  </Fragment>

现在定义组件以部署您的 Web 应用程序\Vdirs 并从节点引用此站点 ID,如下所示:

<iis:WebVirtualDir Id="XYZ_VirtualDirectory_A" Alias="MyXYZ_V_ DIR" Directory="[MYDIR]" WebSite="XYZ_WebSite">
于 2012-12-19T07:55:47.970 回答