使用C#建立Windows服務 使用C#建立Windows服務

使用C#建立Windows服務

 

1、開發環境html

操做系統:Windows 10 X64編程

開發環境:VS2015編程語言

編程語言:C#編輯器

.NET版本:.NET Framework 4.0ide

目標平臺:X86post

2、建立Windows Serviceui

一、新建一個Windows Service,並將項目名稱改成「MyWindowsService」,以下圖所示:this

二、在解決方案資源管理器內將Service1.cs改成MyService1.cs後並點擊「查看代碼」圖標按鈕進入代碼編輯器界面,以下圖所示:url

 

 

三、在代碼編輯器內如入如下代碼,以下所示:spa

複製代碼
複製代碼
using System;
using System.ServiceProcess;
using System.IO;

namespace MyWindowsService
{
    public partial class MyService : ServiceBase
    {
        public MyService()
        {
            InitializeComponent();
        }

        string filePath = @"D:\MyServiceLog.txt";

        protected override void OnStart(string[] args)
        {
            using (FileStream stream = new FileStream(filePath,FileMode.Append))
            using (StreamWriter writer = new StreamWriter(stream))
            {
                writer.WriteLine($"{DateTime.Now},服務啓動!");
            }
        }

        protected override void OnStop()
        {
            using (FileStream stream = new FileStream(filePath, FileMode.Append))
            using (StreamWriter writer = new StreamWriter(stream))
            {
                writer.WriteLine($"{DateTime.Now},服務中止!");
            }
        }
    }
}
複製代碼
複製代碼

四、雙擊項目「MyWindowsService」進入「MyService」設計界面,在空白位置右擊鼠標彈出上下文菜單,選中「添加安裝程序」,以下圖所示:

五、此時軟件會生成兩個組件,分別爲「serviceInstaller1」及「serviceProcessInstaller1」,以下圖所示:

六、點擊「serviceInstaller1」,在「屬性」窗體將ServiceName改成MyService,Description改成個人服務,StartType保持爲Manual,以下圖所示:

七、點擊「serviceProcessInstaller1」,在「屬性」窗體將Account改成LocalSystem(服務屬性系統級別),以下圖所示:

八、鼠標右鍵點擊項目「MyWindowsService」,在彈出的上下文菜單中選擇「生成」按鈕,以下圖所示:

九、至此,Windows服務已經建立完畢。

3、建立安裝、啓動、中止、卸載服務的Windows窗體

一、在同一個解決方案裏新建一個Windows Form項目,並命名爲WindowsServiceClient,以下圖所示:

二、將該項目設置爲啓動項目,並在窗體內添加四個按鈕,分別爲安裝服務、啓動服務、中止服務及卸載服務,以下圖所示:

三、按下F7進入代碼編輯界面,引用「System.ServiceProcess」及「System.Configuration.Install」,並輸入以下代碼:

複製代碼
複製代碼
using System;
using System.Collections;
using System.Windows.Forms;
using System.ServiceProcess;
using System.Configuration.Install;

namespace WindowsServiceClient
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        string serviceFilePath = $"{Application.StartupPath}\\MyWindowsService.exe";
        string serviceName = "MyService";

        //事件:安裝服務
        private void button1_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.UninstallService(serviceName);
            this.InstallService(serviceFilePath);
        }

        //事件:啓動服務
        private void button2_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.ServiceStart(serviceName);
        }

        //事件:中止服務
        private void button4_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName)) this.ServiceStop(serviceName);
        }

        //事件:卸載服務
        private void button3_Click(object sender, EventArgs e)
        {
            if (this.IsServiceExisted(serviceName))
            {
                this.ServiceStop(serviceName);
                this.UninstallService(serviceFilePath);
            }
        }

        //判斷服務是否存在
        private bool IsServiceExisted(string serviceName)
        {
            ServiceController[] services = ServiceController.GetServices();
            foreach (ServiceController sc in services)
            {
                if (sc.ServiceName.ToLower() == serviceName.ToLower())
                {
                    return true;
                }
            }
            return false;
        }

        //安裝服務
        private void InstallService(string serviceFilePath)
        {
            using (AssemblyInstaller installer = new AssemblyInstaller())
            {
                installer.UseNewContext = true;
                installer.Path = serviceFilePath;
                IDictionary savedState = new Hashtable();
                installer.Install(savedState);
                installer.Commit(savedState);
            }
        }

        //卸載服務
        private void UninstallService(string serviceFilePath)
        {
            using (AssemblyInstaller installer = new AssemblyInstaller())
            {
                installer.UseNewContext = true;
                installer.Path = serviceFilePath;
                installer.Uninstall(null);
            }
        }
        //啓動服務
        private void ServiceStart(string serviceName)
        {
            using (ServiceController control = new ServiceController(serviceName))
            {
                if (control.Status == ServiceControllerStatus.Stopped)
                {
                    control.Start();
                }
            }
        }

        //中止服務
        private void ServiceStop(string serviceName)
        {
            using (ServiceController control = new ServiceController(serviceName))
            {
                if (control.Status == ServiceControllerStatus.Running)
                {
                    control.Stop();
                }
            }
        }
    }
}
複製代碼
複製代碼

四、爲了後續調試服務及安裝卸載服務的須要,將已生成的MyWindowsService.exe引用到本Windows窗體,以下圖所示:

五、因爲須要安裝服務,故須要使用UAC中Administrator的權限,鼠標右擊項目「WindowsServiceClient」,在彈出的上下文菜單中選擇「添加」->「新建項」,在彈出的選擇窗體中選擇「應用程序清單文件」並單擊肯定,以下圖所示:

六、打開該文件,並將<requestedExecutionLevel level="asInvoker" uiAccess="false" />改成<requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />,以下圖所示:

七、IDE啓動後,將會彈出以下所示的窗體(有的系統因UAC配置有可能不顯示),須要用管理員權限打開:

八、從新打開後,在IDE運行WindowsServiceClient項目;

九、使用WIN+R的方式打開運行窗體,並在窗體內輸入services.msc後打開服務,以下圖所示:

十、點擊窗體內的「安裝服務」按鈕,將會在服務中出現MyService,以下圖所示:

十一、點擊「運行服務」按鈕,將啓動並運行服務,以下所示:

十二、點擊「中止服務」按鈕,將會中止運行服務,以下圖所示:

1三、點擊「卸載服務」按鈕,將會從服務中刪除MyService服務。

1四、以上啓動及中止服務將會寫入D:\MyServiceLog.txt,內容以下所示:

 

源代碼下載:

 

 

 

補充:如何調試服務

一、要調試服務,其實很簡單,如需將服務附加進程到須要調試的項目裏面便可,假如要調試剛纔建的服務,如今OnStop事件裏設置斷點,以下所示:

 

二、啓動「WindowsServiceClient」項目,在「調試」菜單中選擇「附件到進程」(服務必須事先安裝),以下所示:

三、找到「MyWindowsService.exe」,點擊「附加」按鈕,以下圖所示:

四、點擊「中止服務」按鈕,程序將會在設置斷點的地方中斷,以下圖所示:

相關文章
相關標籤/搜索