使用C#建立Windows服務 併發布Windows 服務

1、開發環境html

操做系統:Windows 10 X64編程

開發環境:VS2015編程語言

編程語言:C#編輯器

.NET版本:.NET Framework 4.0ide

目標平臺:X86ui

2、建立Windows Servicethis

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

 

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

 

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

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,內容以下所示:

 源代碼下載:

http://pan.baidu.com/s/1kVza3Bp

補充:如何調試服務

 

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

 

 

 

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

 

 

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

 

 

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

 




=
======================================================= 華麗的分割線 第二種方式 =======================================================



namespace WindowsService1
{
    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},服務啓動!");
                    for (int i = 0; i < 20; i++)
                    {
                        Thread.Sleep(1000);
                        writer.WriteLine("當前內容: "+ i );
                    }
                }
            }
        }

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

 



使用bat發佈方式
bat內容
cd C:\Windows\Microsoft.NET\Framework\v4.0.30319\
InstallUtil.exe 

InstallUtil D:\WindowsService1\bin\Debug\WindowsService1.exe   //服務項目地址
Net Start Service1
pause
 

 

其中C:\Windows\Microsoft.NET\Framework\v4.0.30319\爲installutil的路徑

WindowsServiceTest.exe爲Windows Service服務的應用程序,教程

Service1爲服務名

ps:.bat與WindowsService1.exe在同一路徑

運行結果:

正在運行事務處理安裝。

正在開始安裝的「安裝」階段。
查看日誌文件的內容以得到 D:\WindowsService1\bin\Debug\WindowsService1.exe 程序集的進度。
該文件位於 D:\WindowsService1\bin\Debug\WindowsService1.InstallLog。
正在安裝程序集「D:\WindowsService1\bin\Debug\WindowsService1.exe」。
受影響的參數是:
   logtoconsole =
   logfile = D:\WindowsService1\bin\Debug\WindowsService1.InstallLog
   assemblypath = D:\WindowsService1\bin\Debug\WindowsService1.exe
正在安裝服務 MyService...
正在日誌 Application 中建立 EventLog 源 MyService...

在「安裝」階段發生異常。 System.Security.SecurityException: 未找到源,但未能搜索某些或所有事件日誌。 不可訪問的日誌: Security。

正在開始安裝的「回退」階段。
查看日誌文件的內容以得到 D:\WindowsService1\bin\Debug\WindowsService1.exe 程序集的進度。
該文件位於 D:\WindowsService1\bin\Debug\WindowsService1.InstallLog。
正在回滾程序集「D:\WindowsService1\bin\Debug\WindowsService1.exe」。
受影響的參數是:
   logtoconsole =
   logfile = D:\WindowsService1\bin\Debug\WindowsService1.InstallLog
   assemblypath = D:\WindowsService1\bin\Debug\WindowsService1.exe
正在將事件日誌還原到源 MyService 的前一狀態。
在 System.Diagnostics.EventLogInstaller 安裝程序的「回退」階段發生異常。 System.Security.SecurityException: 未找到源,但未能搜索某些或所有事件日誌。 不可訪問的日誌: Security。
在安裝的「回退」階段發生異常。將忽略該異常並繼續回退。可是,在完成回退後計算機可能沒法徹底還原到它的初始狀態。

「回退」階段已成功完成。

已完成事務處理安裝。
安裝失敗,已執行回退。

 

 

很明顯了,是權限問題。

 

【解決方案】

右鍵管理員權限打開.bat文件

 
刪除:

 

 

 

卸載很簡單,打開cmd, 直接輸入 sc delete WindowsService1 即可(要以管理員身份運行)不然結果以下

 

參考:https://www.cnblogs.com/cncc/p/7170951.html
相關文章
相關標籤/搜索