C# - windows service installer not registering service

一曲冷凌霜 提交于 2019-12-10 02:08:17

问题


I'm trying to use an installer for a Windows service, and would like to avoid using InstallUtil.exe. The installer appears to work correctly (the executable and dlls are in the correct directory), but the service doesn't appear under Computer Management.

Here's what I've done so far:

The service class name is the default - Service1.

In the Project installer, the ServiceName of the service installer matches the class name - Service1.

Under the Custom Actions, the primary output of the service was added to Install, Commit, Rollback, and Uninstall.

I'm using http://support.microsoft.com/kb/816169 as a reference.

Any ideas?


回答1:


Does your service project have an Installer class? You should have one that looks something like this:

[RunInstaller(true)]
public partial class Service1Installer : Installer
{
    public Service1Installer()
    {
        InitializeComponent();
        ServiceProcessInstaller process = new ServiceProcessInstaller();
        process.Account = ServiceAccount.LocalSystem;

        ServiceInstaller serviceAdmin = new ServiceInstaller();
        serviceAdmin.StartType = ServiceStartMode.Manual;
        serviceAdmin.ServiceName = "Service1";
        serviceAdmin.DisplayName = "Service1";
        serviceAdmin.Description = "Service1";

        Installers.Add(serviceAdmin);
    }
}



回答2:


Make sure you've created a ServiceInstaller and ServiceProcessInstaller class in your service project. (Check this link for more info).

Close computer management and the Services window, run your installer again, and reopen the Services window.

If that doesn't work, restart your computer. You might have some files locked.

It goes without saying that you probably need administrative privileges on the machine for this to work properly.




回答3:


I think I've figured it out. It might be a bug with the Designer code, or perhaps I missed a step.

I think in the designer code, in the InitializeComponent() method, it's supposed to add:

this.Installers.AddRange(new System.Configuration.Install.Installer[] {this.serviceProcessInstaller1, this.serviceInstaller1});

It wasn't there, so I added this in the ProjectInstaller constructor:

Installers.Add(serviceInstaller1);
Installers.Add(serviceProcessInstaller1);

Now on installation, it's listed as a service in Computer Management.



来源:https://stackoverflow.com/questions/1190294/c-sharp-windows-service-installer-not-registering-service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!