1. ホーム
  2. c#

[解決済み] InstallUtil.exeを使用せずに.NETウィンドウズサービスをインストールする

2022-04-24 22:56:10

質問

私は、C#で書かれた標準的な.NETのWindowsサービスを持っています。

InstallUtil を使用せずに自分自身でインストールすることはできますか? サービスインストーラクラスを使用すべきですか?どのように使用すればよいですか?

以下を呼び出せるようにしたい。

MyService.exe -install

と呼び出すのと同じ効果が得られます。

InstallUtil MyService.exe

解決方法は?

正しいDLL(System.ServiceProcess.dll)を参照し、インストーラークラスを追加するだけです。

以下はその例です。

[RunInstaller(true)]
public sealed class MyServiceInstallerProcess : ServiceProcessInstaller
{
    public MyServiceInstallerProcess()
    {
        this.Account = ServiceAccount.NetworkService;
    }
}

[RunInstaller(true)]
public sealed class MyServiceInstaller : ServiceInstaller
{
    public MyServiceInstaller()
    {
        this.Description = "Service Description";
        this.DisplayName = "Service Name";
        this.ServiceName = "ServiceName";
        this.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
    }
}

static void Install(bool undo, string[] args)
{
    try
    {
        Console.WriteLine(undo ? "uninstalling" : "installing");
        using (AssemblyInstaller inst = new AssemblyInstaller(typeof(Program).Assembly, args))
        {
            IDictionary state = new Hashtable();
            inst.UseNewContext = true;
            try
            {
                if (undo)
                {
                    inst.Uninstall(state);
                }
                else
                {
                    inst.Install(state);
                    inst.Commit(state);
                }
            }
            catch
            {
                try
                {
                    inst.Rollback(state);
                }
                catch { }
                throw;
            }
        }
    }
    catch (Exception ex)
    {
        Console.Error.WriteLine(ex.Message);
    }
}