C#创建windows服务并定时执行

it2022-05-09  59

一、创建window服务

1、新建项目-->选择Windows服务。默认生成文件包括Program.cs,Service1.cs

2、在Service1.cs添加如下代码:

       System.Timers.Timer timer1;  //计时器

        public Service1()

        {

            InitializeComponent();

        }

        protected override void OnStart(string[] args)  //服务启动执行

        {

            timer1 = new System.Timers.Timer();

            timer1.Interval = 3000;  //设置计时器事件间隔执行时间

            timer1.Elapsed += new System.Timers.ElapsedEventHandler(timer1_Elapsed);

            timer1.Enabled = true;

        }

        protected override void OnStop()  //服务停止执行

        {

            this.timer1.Enabled = false;

        }

 

        private void timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)

        {

            //执行SQL语句或其他操作

        }

 

二、添加window服务安装程序

1、打开Service1.cs【设计】页面,点击右键,选择【添加安装程序】,会出现serviceInstaller1和serviceProcessInstaller1两个组件

2、将serviceProcessInstaller1的Account属性设为【LocalSystem】, serviceInstaller1的StartType属性设为【Automatic】,ServiceName属性可设置服务名称,此后在【管理工 具】--》【服务】中即显示此名称

3、ProjectInstaller.cs文件,在安装服务后一般还需手动启动(即使上述StartType属性设为【Automatic】),可在ProjectInstaller.cs添加如下代码实现安装后自动启动

    public ProjectInstaller()

        {

            InitializeComponent();

            this.Committed += new InstallEventHandler(ProjectInstaller_Committed);   

        }

 

        private void ProjectInstaller_Committed(object sender, InstallEventArgs e)

        {

            //参数为服务的名字

            System.ServiceProcess.ServiceController controller = new System.ServiceProcess.ServiceController("服务名称");

            controller.Start();

        }   

 

三、安装、卸载window服务

1、输入cmd(命令行),输入cd C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319,2.0为cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727

2、安装服务(项目生成的exe文件路径)

  InstallUtil "E:\WindowsService1\bin\Debug\WindowsService1.exe"

3、卸载服务

  InstallUtil  /u "E:\WindowsService1\bin\Debug\WindowsService1.exe"

四、查看window服务

控制面板-->管理工具-->服务,可在此手动启动,停止服务

五、调试window服务

1、通过【事件查看器】查看

2、直接在程序中调试(菜单-->调试-->附加进程-->服务名(这里的服务名是项目名称,不是ServiceName属性自定义的名称,所以建议自定义名称和项目名称保持一致,另外需勾选【显示所有用户的进程】才能看到服务名)-->附加

3. 在程序中打断点调试即可,另外调试服务时服务必须已启动(管理工具-->服务)

文字转自:http://blog.csdn.net/armyfai/article/details/8056976

 

 

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.ServiceProcess;using System.IO;using System.Text;using System.Timers;using System.Data.SqlClient;using System.Threading;

namespace InnPoint{    public partial class Service : ServiceBase    {        public Service()        {            InitializeComponent();        }

        protected override void OnStart(string[] args)        {            EventLog.WriteEntry("我的服务启动");//在系统事件查看器里的应用程序事件里来源的描述            writestr("服务启动");//自定义文本日志            System.Timers.Timer t = new System.Timers.Timer();            t.Interval = 1000;            t.Elapsed += new System.Timers.ElapsedEventHandler(ChkSrv);//到达时间的时候执行事件;             t.AutoReset = true;//设置是执行一次(false)还是一直执行(true);             t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;         }

        /// <summary>        /// 定时检查,并执行方法        /// </summary>        /// <param name="source"></param>        /// <param name="e"></param>        public void ChkSrv(object source, System.Timers.ElapsedEventArgs e)        {            int intHour = e.SignalTime.Hour;            int intMinute = e.SignalTime.Minute;            int intSecond = e.SignalTime.Second;                       if (intHour == 13 && intMinute == 30 && intSecond == 00) ///定时设置,判断分时秒            {                try                {                    System.Timers.Timer tt = (System.Timers.Timer)source;                    tt.Enabled = false;                    SetInnPoint();                    tt.Enabled = true;                }                catch (Exception err)                {                    writestr(err.Message);                }            }        }

        //我的方法        public void SetInnPoint()        {            try            {                writestr("服务运行");                //这里执行你的东西       Thread.Sleep(10000);            }            catch (Exception err)            {                writestr(err.Message);            }        }

        ///在指定时间过后执行指定的表达式        ///        ///事件之间经过的时间(以毫秒为单位)        ///要执行的表达式        public static void SetTimeout(double interval, Action action)        {            System.Timers.Timer timer = new System.Timers.Timer(interval);            timer.Elapsed += delegate(object sender, System.Timers.ElapsedEventArgs e)            {                timer.Enabled = false;                action();            };            timer.Enabled = true;        }

 

        public void writestr(string readme)        {            //debug==================================================            //StreamWriter dout = new StreamWriter(@"c:\" + System.DateTime.Now.ToString("yyyMMddHHmmss") + ".txt");            StreamWriter dout = new StreamWriter(@"c:\" + "WServ_InnPointLog.txt", true);            dout.Write("\r\n事件:" + readme + "\r\n操作时间:" + System.DateTime.Now.ToString("yyy-MM-dd HH:mm:ss"));            //debug==================================================            dout.Close();        }

        protected override void OnStop()        {            writestr("服务停止");            EventLog.WriteEntry("我的服务停止");        }    }}

3.在Service1.cs设计页面右键添加安装程序

4.ProjectInstaller.cs设计页面中

    serviceInstaller1属性中设置:

    Description(系统服务的描述)

    DisplayName (系统服务中显示的名称)

    ServiceName(系统事件查看器里的应用程序事件中来源名称)

    serviceProcessInstaller1属性设置:Account 下拉设置成 LocalSystem

5.在.net Framework的安装目录可以找到InstallUtil.exe,可以复制出来放在你的服务生成的exe一起

6.安装服务setup.bat批处理文件内容:InstallUtil Service1.exe ,安装好后可以在系统服务中找到你设置的服务名称然后可以启动这个服务

7.卸载服务UnInstall.bat批处理文件内容:InstallUtil -u Service1.exe

转载于:https://www.cnblogs.com/goto/p/4172274.html

相关资源:C# 自动 定时 程序 (windows服务的形式)

最新回复(0)