C#創(chuàng)建Windows服務(wù)的實(shí)現(xiàn)方法
Microsoft Windows 服務(wù)能夠創(chuàng)建在它們自己的 Windows 會(huì)話中可長時(shí)間運(yùn)行的可執(zhí)行應(yīng)用程序。這些服務(wù)可以在計(jì)算機(jī)啟動(dòng)時(shí)自動(dòng)啟動(dòng),可以暫停和重新啟動(dòng)而且不顯示任何用戶界面。這使服務(wù)非常適合在服務(wù)器上使用,或任何時(shí)候,為了不影響在同一臺(tái)計(jì)算機(jī)上工作的其他用戶,需要長時(shí)間運(yùn)行功能時(shí)使用。還可以在不同于登錄用戶的特定用戶帳戶或默認(rèn)計(jì)算機(jī)帳戶的安全上下文中運(yùn)行服務(wù)。
一、創(chuàng)建Windows 服務(wù)
1.新建一個(gè)Windows 服務(wù),并將項(xiàng)目名稱改為“WindowsServiceDemo”,如下圖所示:
2.在解決方案資源管理器內(nèi)將Service1.cs改為MyService.cs后并點(diǎn)擊“查看代碼”圖標(biāo)按鈕進(jìn)入代碼編輯器界面,如下圖所示:
3.在代碼編輯器內(nèi)如入以下代碼,如下所示:
using System; using System.ServiceProcess; using System.IO; namespace WindowsServiceDemo { 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},服務(wù)啟動(dòng)!"); } } protected override void OnStop() { using (FileStream stream = new FileStream(filePath, FileMode.Append)) using (StreamWriter writer = new StreamWriter(stream)) { writer.WriteLine($"{DateTime.Now},服務(wù)停止!"); } } } }
4.雙擊項(xiàng)目“WindowsServiceDemo”進(jìn)入“MyService”設(shè)計(jì)界面,在空白位置右擊鼠標(biāo)彈出上下文菜單,選中“添加安裝程序”,如下圖所示:
5.此時(shí)軟件會(huì)生成兩個(gè)組件,分別為“serviceInstaller1”及“serviceProcessInstaller1”,如下圖所示:
6.點(diǎn)擊“serviceInstaller1”,在“屬性”窗體將ServiceName改為MyService,Description改為我的服務(wù),StartType保持為Manual,如下圖所示:
7.點(diǎn)擊“serviceProcessInstaller1”,在“屬性”窗體將Account改為LocalSystem(服務(wù)屬性系統(tǒng)級(jí)別),如下圖所示:
8.鼠標(biāo)右鍵點(diǎn)擊項(xiàng)目“WindowsServiceDemo”,在彈出的上下文菜單中選擇“生成”按鈕,如下圖所示:
9.至此,Windows服務(wù)已經(jīng)創(chuàng)建完畢。
二、創(chuàng)建安裝、啟動(dòng)、停止、卸載服務(wù)的Windows窗體
1.在同一個(gè)解決方案里新建一個(gè)Windows Form項(xiàng)目,并命名為WindowsServiceClient,如下圖所示:
2.將該項(xiàng)目設(shè)置為啟動(dòng)項(xiàng)目,并在窗體內(nèi)添加四個(gè)按鈕,分別為安裝服務(wù)、啟動(dòng)服務(wù)、停止服務(wù)及卸載服務(wù),如下圖所示:
3.按下F7進(jìn)入代碼編輯界面,添加引用“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}\\WindowsServiceDemo.exe"; string serviceName = "MyService"; //事件:安裝服務(wù) private void button1_Click(object sender, EventArgs e) { if (this.IsServiceExisted(serviceName)) this.UninstallService(serviceName); this.InstallService(serviceFilePath); } //事件:啟動(dòng)服務(wù) private void button2_Click(object sender, EventArgs e) { if (this.IsServiceExisted(serviceName)) this.ServiceStart(serviceName); } //事件:停止服務(wù) private void button3_Click(object sender, EventArgs e) { if (this.IsServiceExisted(serviceName)) this.ServiceStop(serviceName); } //事件:卸載服務(wù) private void button4_Click(object sender, EventArgs e) { if (this.IsServiceExisted(serviceName)) { this.ServiceStop(serviceName); this.UninstallService(serviceFilePath); } } //判斷服務(wù)是否存在 private bool IsServiceExisted(string serviceName) { ServiceController[] services = ServiceController.GetServices(); foreach (ServiceController sc in services) { if (sc.ServiceName.ToLower() == serviceName.ToLower()) { return true; } } return false; } //安裝服務(wù) 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); } } //卸載服務(wù) private void UninstallService(string serviceFilePath) { using (AssemblyInstaller installer = new AssemblyInstaller()) { installer.UseNewContext = true; installer.Path = serviceFilePath; installer.Uninstall(null); } } //啟動(dòng)服務(wù) private void ServiceStart(string serviceName) { using (ServiceController control = new ServiceController(serviceName)) { if (control.Status == ServiceControllerStatus.Stopped) { control.Start(); } } } //停止服務(wù) private void ServiceStop(string serviceName) { using (ServiceController control = new ServiceController(serviceName)) { if (control.Status == ServiceControllerStatus.Running) { control.Stop(); } } } } }
4.為了后續(xù)調(diào)試服務(wù)及安裝卸載服務(wù)的需要,將已生成的WindowsServiceDemo.exe引用到本W(wǎng)indows窗體,如下圖所示:
5.由于需要安裝服務(wù),故需要使用UAC中Administrator的權(quán)限,鼠標(biāo)右擊項(xiàng)目“WindowsServiceClient”,在彈出的上下文菜單中選擇“添加”->“新建項(xiàng)”,在彈出的選擇窗體中選擇“應(yīng)用程序清單文件”并單擊確定,如下圖所示:
6.打開該文件,并將<requestedExecutionLevel level="asInvoker" uiAccess="false" />改為<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />,如下圖所示:
7.IDE啟動(dòng)后,將會(huì)彈出如下所示的窗體(有的系統(tǒng)因UAC配置有可能不顯示),需要用管理員權(quán)限打開:
8.重新打開后,在IDE運(yùn)行WindowsServiceClient項(xiàng)目;
9.使用WIN+R的方式打開運(yùn)行窗體,并在窗體內(nèi)輸入services.msc后打開服務(wù),如下圖所示:
10.運(yùn)行程序"Form1"點(diǎn)擊窗體內(nèi)的“安裝服務(wù)”按鈕,將會(huì)在服務(wù)中出現(xiàn)MyService,如下圖所示:
11.點(diǎn)擊“運(yùn)行服務(wù)”按鈕,將啟動(dòng)并運(yùn)行服務(wù),如下所示:
12.點(diǎn)擊“停止服務(wù)”按鈕,將會(huì)停止運(yùn)行服務(wù),如下圖所示:
13.點(diǎn)擊“卸載服務(wù)”按鈕,將會(huì)從服務(wù)中刪除MyService服務(wù)。
14.以上啟動(dòng)及停止服務(wù)將會(huì)寫入D:\MyServiceLog.txt,內(nèi)容如下所示:
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:C#創(chuàng)建簡單windows窗體應(yīng)用(加法器)
欄 目:C#教程
下一篇:C#動(dòng)態(tài)加載組件后如何在開發(fā)環(huán)境中調(diào)試詳解
本文標(biāo)題:C#創(chuàng)建Windows服務(wù)的實(shí)現(xiàn)方法
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/4811.html
您可能感興趣的文章
- 01-10winform實(shí)現(xiàn)創(chuàng)建最前端窗體的方法
- 01-10C#實(shí)現(xiàn)自定義windows系統(tǒng)日志的方法
- 01-10C#3.0使用EventLog類寫Windows事件日志的方法
- 01-10C#動(dòng)態(tài)創(chuàng)建button的方法
- 01-10C#使用windows服務(wù)開啟應(yīng)用程序的方法
- 01-10深入淺出23種設(shè)計(jì)模式
- 01-10winform創(chuàng)建不規(guī)則窗體的方法
- 01-10C#動(dòng)態(tài)創(chuàng)建Access數(shù)據(jù)庫及密碼的方法
- 01-10C#實(shí)現(xiàn)在啟動(dòng)目錄創(chuàng)建快捷方式的方法
- 01-10C#創(chuàng)建不規(guī)則窗體的4種方式詳解


閱讀排行
本欄相關(guān)
- 01-10C#通過反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁無法打開的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻播放器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過重寫Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 08-05織夢dedecms什么時(shí)候用欄目交叉功能?
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10delphi制作wav文件的方法
- 01-11ajax實(shí)現(xiàn)頁面的局部加載
- 01-10C#中split用法實(shí)例總結(jié)
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 04-02jquery與jsp,用jquery
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子