wix HeatDirectory 服务安装

标签 wix heat

我正在使用 HeatDirectory 创建源 .wxs 文件。在pickup目录中有一个应该作为服务安装的exe。实际上,如果我自己创建组件,我知道如何安装服务,但我不知道如何在自动生成的组件中包含 ServiceInstall。有什么建议吗?

        <HeatDirectory DirectoryRefId="Guardian" OutputFile="Source\GuardianSource.wxs" Transforms="Filter.xsl" Directory="..\Setup\C24.Guardian\bin\Debug" PreprocessorVariable="var.GuardianPath" ComponentGroupName="GuardianGroup" ToolPath="$(WixToolPath)" SuppressCom="true" SuppressFragments="true" SuppressRegistry="true" SuppressRootDirectory="true" AutoGenerateGuids="true" GenerateGuidsNow="false">
    </HeatDirectory>



<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
    <DirectoryRef Id="Guardian">
        <Component Id="cmp70BEDA00F3161F3FB5E847EB1136B1D5" Guid="*">
            <File Id="fil26DCBF1E4218C7363018FBA2CD456633" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.exe" />
        </Component>
        <Component Id="cmp2EE8126A193FA022ED35FAD8F182E65A" Guid="*">
            <File Id="fil785CD681C496EDDAB457E8314C49D686" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.exe.config" />
        </Component>
        <Component Id="cmp0CC91B457FBC44F978A2AD6B24043DCF" Guid="*">
            <File Id="fil2D304D0395599AAAAAF975A2DBFD530F" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.pdb" />
        </Component>
        <Component Id="cmpFB799FA015274DDBE2C337C60667D2C5" Guid="*">
            <File Id="filB9C39B394CAD03F5A1BC3262C61EDDEB" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.vshost.exe" />
        </Component>
        <Component Id="cmp28C29865AE85B067BCEEBD70EFDB19D5" Guid="*">
            <File Id="fil0A756B711769AAD657F306B3A6EA7134" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.vshost.exe.config" />
        </Component>
        <Component Id="cmp92A715A4BD4B580A6E70362230170428" Guid="*">
            <File Id="filBD9D504F303A6EEC9E340E3872BBB0AE" KeyPath="yes" Source="$(var.GuardianPath)\C24.Guardian.vshost.exe.manifest" />
        </Component>
        <Component Id="cmp8AB6A241FA2D13F296CBD946C9711579" Guid="*">
            <File Id="fil8EF8CC607CB82B32F84FC9EC2F1636B9" KeyPath="yes" Source="$(var.GuardianPath)\com.Contact24.Tools.dll" />
        </Component>
        <Component Id="cmpC0DBB85C89E8AEA9BAC6E32B85913A2C" Guid="*">
            <File Id="fil917CD649C5C318C6717D8EA9FFDF911A" KeyPath="yes" Source="$(var.GuardianPath)\com.Contact24.Tools.pdb" />
        </Component>
        <Component Id="cmp8AFB0FC7CCF571B61196D9166DEEBA24" Guid="*">
            <File Id="fil32C12DF0163D5BAD7D0495F2CA2C8DA1" KeyPath="yes" Source="$(var.GuardianPath)\ICSharpCode.SharpZipLib.dll" />
        </Component>
        <Component Id="cmpF5DE5EB2B4C6E33F0C32CFF5F464432C" Guid="*">
            <File Id="fil3C8C6F29095A04034E72FBB187F8B841" KeyPath="yes" Source="$(var.GuardianPath)\log4net.dll" />
        </Component>
        <Component Id="cmp27A7791E229DDDBC065069B26138FC2F" Guid="*">
            <File Id="fil8DED592D9F63E708FEF848D2980A5186" KeyPath="yes" Source="$(var.GuardianPath)\log4net.xml" />
        </Component>
    </DirectoryRef>
</Fragment>
<Fragment>
    <ComponentGroup Id="GuardianGroup">
        <ComponentRef Id="cmp70BEDA00F3161F3FB5E847EB1136B1D5" />
        <ComponentRef Id="cmp2EE8126A193FA022ED35FAD8F182E65A" />
        <ComponentRef Id="cmp0CC91B457FBC44F978A2AD6B24043DCF" />
        <ComponentRef Id="cmpFB799FA015274DDBE2C337C60667D2C5" />
        <ComponentRef Id="cmp28C29865AE85B067BCEEBD70EFDB19D5" />
        <ComponentRef Id="cmp92A715A4BD4B580A6E70362230170428" />
        <ComponentRef Id="cmp8AB6A241FA2D13F296CBD946C9711579" />
        <ComponentRef Id="cmpC0DBB85C89E8AEA9BAC6E32B85913A2C" />
        <ComponentRef Id="cmp8AFB0FC7CCF571B61196D9166DEEBA24" />
        <ComponentRef Id="cmpF5DE5EB2B4C6E33F0C32CFF5F464432C" />
        <ComponentRef Id="cmp27A7791E229DDDBC065069B26138FC2F" />
    </ComponentGroup>
</Fragment>
</Wix>

自动生成以下代码会很好:
        <ComponentRef Id="cmp70BEDA00F3161F3FB5E847EB1136B1D5">
                        <ServiceInstall
                              Id="ServiceAdminGuardianInstaller"
                              Type="ownProcess"
                              Vital="yes"
                              Name="C24.Guardian"
                              DisplayName="C24.Guardian"
                              Description="Служба контроля работы сервера администрирования"
                              Start="auto"
                              Account="[SERVICEACCOUNT]"
                              Password="[SERVICEPASSWORD]"
                              ErrorControl="ignore"
                              Interactive="no">

                            <util:PermissionEx
                                User="Everyone"
                                GenericAll="yes"
                                ServiceChangeConfig="yes"
                                ServiceEnumerateDependents="yes"
                                ChangePermission="yes"
                                ServiceInterrogate="yes"
                                ServicePauseContinue="yes"
                                ServiceQueryConfig="yes"
                                ServiceQueryStatus="yes"
                                ServiceStart="yes"
                                ServiceStop="yes"/>

                        </ServiceInstall>

                        <ServiceControl Id="StopGuardianService" Name="C24.Guardian" Stop="both" Wait="yes" Remove="uninstall" />
       </ComponentRef>

最佳答案

作为@sttaq描述的方法的替代,我通常做的是过滤掉.exe文件并手动管理它们。您已经使用 xsl 文件 (Filter.xsl) 过滤了热量输出,因此添加规则来过滤掉任何 *.exe 文件应该很容易。

<!--Match and ignore .exe files-->
<xsl:key name="exe-search" match="wix:Component[contains(wix:File/@Source, '.exe')]" use="@Id"/>
<xsl:template match="wix:Component[key('exe-search', @Id)]"/>
<xsl:template match="wix:ComponentRef[key('exe-search', @Id)]"/>

然后,在您的 .wxs 文件中,您可以手动创作 .exe 文件组件,包括您的服务安装程序、图标或您可能需要的任何内容。只要记住把它放在正确的目录中:
  <Fragment>
    <DirectoryRef Id="dirA9BC717C5B7BCAAF2B4C1161965AD894">
      <Component Id="ExecFileComponent" Guid="YOUR-GUID-HERE">
        <RemoveFile Id="RemoveLogFiles" Name="*.svclog" On="both"/>
        <File Id="ExecFile" Source="$(exefile)" KeyPath="yes" />
        <ServiceInstall Id="ServiceInstallation" DisplayName="displayname" Name="name" ErrorControl="normal" Start="auto" Type="ownProcess" Vital="yes">
          <util:PermissionEx
            User="Everyone"
            GenericAll="yes"
            ServiceChangeConfig="yes"
            ServiceEnumerateDependents="yes"
            ChangePermission="yes"
            ServiceInterrogate="yes"
            ServicePauseContinue="yes"
            ServiceQueryConfig="yes"
            ServiceQueryStatus="yes"
            ServiceStart="yes"
            ServiceStop="yes" />
        </ServiceInstall>
        <ServiceControl Id="ServiceControl" Name="name" Stop="both" Remove="uninstall" />
      </Component>
    </DirectoryRef>
  </Fragment>

关于wix HeatDirectory 服务安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20193681/

相关文章:

iis - 如何在卸载时删除 WebApplication?

wix - 安装 MSI 文件时如何覆盖 UpgradeCode

wix - 生成 ComponentRefs 的 ComponentGroups

wix - 如何运行heat.exe并在wix中注册一个dll

xml - 通过应用 xslt 转换从 wxs 文件中删除不需要的节点

wix - WiX提示卸载旧版本APP

WiX:如何混合手动生成和自动生成的 .wxs 内容?

xslt - 使用 heat.exe,启用 gac,仅从 .txt 文件中动态读取特定的二进制文件列表

Wix - 在使用蜡烛的热量输出时如何处理项目引用?

wix - 我可以选择使用转换在 Wix Heat 中包含特定文件扩展名吗?