如何自动启动窗口服务

发布于 2024-10-07 22:14:59 字数 103 浏览 4 评论 0原文

我有一个用 C# (vs2008) 开发的窗口服务。 请告诉我该怎么做才能使其在安装后自动启动并且每次系统重新启动时自动启动。

编辑: 我正在使用设置和部署项目来安装它。 谢谢

I have a window service which i developed in c# (vs2008).
please tell me what should i do to make it auto start after installation and also auto start on every time when system gets restarted.

EDIT:
I am using setup & deployment project to install it.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愿与i 2024-10-14 22:14:59

按照此处给出的说明添加您的服务应用程序的安装程序。请特别注意步骤 5,其中设置 StartType 属性。

要在安装后启动服务,请参阅安装时自动启动 Windows 服务

Follow the instructions given here to add an installer to your Service application. Pay particular attention to step 5, where you set the StartType property.

To start the service after installation, see Automatically start a Windows Service on install

百合的盛世恋 2024-10-14 22:14:59

尝试以下方式,

private void serviceInstaller_AfterInstall(object sender, InstallEventArgs e)
        {
            var service = new ServiceController(serviceInstaller.ServiceName);
            if (service.Status != ServiceControllerStatus.Running)
            {
                service.Start();
            }
        }

Try following way,

private void serviceInstaller_AfterInstall(object sender, InstallEventArgs e)
        {
            var service = new ServiceController(serviceInstaller.ServiceName);
            if (service.Status != ServiceControllerStatus.Running)
            {
                service.Start();
            }
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文