使用WiX安装使用.NET创建的服务

时间:2013-02-07 18:28:16

标签: c# windows-services wix

我正在尝试使用将与WiX一起安装的VS2012 express创建服务。这是在没有完整版VS的模板的情况下完成的。我的课程来自ServiceBase。我假设(可能不正确)如果使用WiX安装程序,则不需要从ServiceInstaller派生的类。当我运行由WiX创建的MSI时,不会标记任何错误,但不会显示新服务。

我让Google搜索了一个答案,但没有找到创建服务所需的miniumum C#代码的示例。链接到一个好的教程或指出缺少C#或WiX代码的区域将不胜感激。

模板服务的代码是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceProcess;

namespace WixInstalledServiceTeamplate
{
    class BasicService : ServiceBase
    {
        static void Main(string[] args)
        {

        }

        public BasicService()
        {
            this.AutoLog = true;
            this.ServiceName = "MY Service Template";

        }

        protected override void OnStart(string[] args)
        {
            base.OnStart(args);

            //TODO: place your start code here
        }

        protected override void OnStop()
        {
            base.OnStop();

            //TODO: clean up any variables and stop any threads
        }

    }
}

Wix代码:

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="786F7069-9C7F-4E15-A721-6B3B4D300FD9" Name="WixEditText" Language="1033" Version="0.0.0.1" Manufacturer="3M Automated Inpsection and Measurement" UpgradeCode="31956530-98A2-4C83-B3A9-5FB6B7A7AE07">
        <Package Description="Test file in a Product" Comments="Simple test" InstallerVersion="200" Compressed="yes" />
        <Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramFilesFolder" Name="PFiles">
                <Directory Id="RELEASE" Name="Release">
                    <Component Id="WIXINSTALLEDSERVICETEAMPLATE.EXE" DiskId="1" Guid="B0AEF920-4EF0-478C-9B5A-0B13F23F7E73">
                        <File Id="WIXINSTALLEDSERVICETEAMPLATE.EXE" Name="WixInstalledServiceTeamplate.exe" Source="bin\Release\WixInstalledServiceTeamplate.exe" />
                    </Component>
                </Directory>
            </Directory>
        </Directory>
        <Feature Id="Complete" Title="Install Everything" Level="1" Display="expand" ConfigurableDirectory="TARGETDIR">
            <Component Id="MYServiceTemplate" Guid="1BD8DA93-86A6-4DC4-8CE9-B59525DDFB89" Directory="TARGETDIR">
                <ServiceInstall Name="myservicetemplate" Type="ownProcess" Start="demand" ErrorControl="normal" Account="LOCAL SYSTEM" Description="test service install with wix" DisplayName="MY Service Template" Id="serviceInstall">
                </ServiceInstall>
            </Component>
            <ComponentRef Id="WIXINSTALLEDSERVICETEAMPLATE.EXE" />
        </Feature>
        <UI />
        <UIRef Id="WixUI_Minimal" />
    </Product>
</Wix>

1 个答案:

答案 0 :(得分:3)

您认为只需要ServiceBase是正确的。但是,在WiX中只需要1个组件而不是2个组件。 ServiceInstall不引用文件,它隐式应用于父组件的密钥文件。

如果您需要能够安装EXE和控制台应用程序和/或变得更复杂的服务(变体点)。最简单的方法是将DLL分解并创建2个EXE,总共有3个组件。