1、建立window服務ide
一、新建項目-->選擇Windows服務。默認生成文件包括Program.cs,Service1.cs工具
二、在Service1.cs添加以下代碼:this
System.Timers.Timer timer1; //計時器spa
public Service1().net
{命令行
InitializeComponent();debug
}設計
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語句或其餘操做
}
2、添加window服務安裝程序
一、打開Service1.cs【設計】頁面,點擊右鍵,選擇【添加安裝程序】,會出現serviceInstaller1和serviceProcessInstaller1兩個組件
二、將serviceProcessInstaller1的Account屬性設爲【LocalSystem】, serviceInstaller1的StartType屬性設爲【Automatic】,ServiceName屬性可設置服務名稱,此後在【管理工 具】--》【服務】中即顯示此名稱
三、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();
}
3、安裝、卸載window服務
一、輸入cmd(命令行),輸入cd C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319,2.0爲cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
二、安裝服務(項目生成的exe文件路徑)
InstallUtil "E:\WindowsService1\bin\Debug\WindowsService1.exe"
三、卸載服務
InstallUtil /u "E:\WindowsService1\bin\Debug\WindowsService1.exe"
4、查看window服務
控制面板-->管理工具-->服務,可在此手動啓動,中止服務
5、調試window服務
一、經過【事件查看器】查看
二、直接在程序中調試(菜單-->調試-->附加進程-->服務名(這裏的服務名是項目名稱,不是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