如何自动启动窗口服务
我有一个用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按照此处给出的说明添加您的服务应用程序的安装程序。请特别注意步骤 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
尝试以下方式,
Try following way,