原文:http://www.cnblogs.com/beijia/archive/2012/05/31/WinService.html
前段时间做过一个项目,前端系统提供添加定时任务,后端系统要时刻扫描数据库中的任务并进行相关操作。对于后端系统,首先想到的就是在Window服务中创建定时任务,于是参考了网上的一些资料,顺利完成。现将创建window service的步骤记录下来,方便以后回顾查看。
1、打开VS2008/VS2010,创建window服务项目 MyWindowService。
2、添加 window 服务项 MyService.cs ,代码如下:
打开 MyService.cs 设计视图,右键选择“添加安装程序”,程序会默认为 MyService 服务创建安装程序类。
在 InitializeComponent() 方法中进行相关设置。
View Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceProcess;
using System.Configuration.Install;
using System.ComponentModel;
namespace SinaWeiBoService
{
[RunInstaller(true)]
public class MyServiceInstaller: Installer
{
ServiceProcessInstaller processInstall;
ServiceInstaller serviceInstall;
public SinaServiceInstall()
{
this.processInstall = new ServiceProcessInstaller();
this.serviceInstall = new ServiceInstaller();
// this.serviceInstall.StartType = ServiceStartMode.Automatic;
// 配置StartType 为 Automatic (即自动启动)
processInstall.Account = ServiceAccount.LocalSystem;
this.serviceInstall.ServiceName = "MyService";
this.Installers.Add(this.serviceInstall);
this.Installers.Add(this.processInstall);
// 或使用添加集合的方法
// this.Installers.AddRange(new System.Configuration.Install.Installer[] { serviceInstall, processInstall });
}
}
}
5、项目编译成功后,打开vs命令工具,在系统中注册和卸载服务
注册服务:
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\installutil MyWindowService.exe
卸载服务:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\installutil -u MyWindowService.exe
可以将以上两行代码放在一个cmd或bat类型的文件里,这样双击就可以了。
注册后进入服务就可以看到刚才创建的服务了。