轉:http://www.cnblogs.com/sorex/archive/2012/05/16/2502001.htmlhtml
Windows Service這一塊並不複雜,可是注意事項太多了,網上資料也很凌亂,偶爾本身寫也會丟三落四的。因此本文也就產生了,本文不會寫複雜的東西,徹底以基礎應用的需求來寫,因此不會對Windows Service寫很深刻。git
本文介紹瞭如何用C#建立、安裝、啓動、監控、卸載簡單的Windows Service 的內容步驟和注意事項。github
將Service1重命名爲你服務名稱,這裏咱們命名爲ServiceTest。shell
以後咱們能夠看到上圖,自動爲咱們建立了ProjectInstaller.cs以及2個安裝的組件。ide
右鍵serviceInsraller1,選擇屬性,將ServiceName的值改成ServiceTest。spa
右鍵serviceProcessInsraller1,選擇屬性,將Account的值改成LocalSystem。3d
右鍵ServiceTest,選擇查看代碼。調試
添加以下代碼:日誌
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Linq; using System.ServiceProcess; using System.Text; namespace WindowsServiceTest { public partial class ServiceTest : ServiceBase { public ServiceTest() { InitializeComponent(); } protected override void OnStart(string[] args) { using (System.IO.StreamWriter sw = new System.IO.StreamWriter("C:\\log.txt", true)) { sw.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss ") + "Start."); } } protected override void OnStop() { using (System.IO.StreamWriter sw = new System.IO.StreamWriter("C:\\log.txt", true)) { sw.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss ") + "Stop."); } } } }
這裏咱們的邏輯很簡單,啓動服務的時候寫個日誌,關閉的時候再寫個日誌。htm
在項目中添加2個文件以下(必須是ANSI或者UTF-8無BOM格式):
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe WindowsServiceTest.exe Net Start ServiceTest sc config ServiceTest start= auto
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u WindowsServiceTest.exe
第二行爲啓動服務。
第三行爲設置服務爲自動運行。
這2行視服務形式自行選擇。
若是須要查看腳本運行情況,在腳本最後一行加入pause
簡歷一個新WPF項目,叫WindowsServiceTestUI,添加對System.ServiceProcess的引用。
在WindowsServiceTestUI的bin\Debug目錄下創建Service目錄。
將WindowsServiceTest的生成目錄設置爲上面建立的Service目錄。
生成後目錄結構以下圖
安裝時會產生目錄問題,因此安裝代碼以下:
string CurrentDirectory = System.Environment.CurrentDirectory; System.Environment.CurrentDirectory = CurrentDirectory + "\\Service"; Process process = new Process(); process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "Install.bat"; process.StartInfo.CreateNoWindow = true; process.Start(); System.Environment.CurrentDirectory = CurrentDirectory;
卸載時也會產生目錄問題,因此卸載代碼以下:
string CurrentDirectory = System.Environment.CurrentDirectory; System.Environment.CurrentDirectory = CurrentDirectory + "\\Service"; Process process = new Process(); process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "Uninstall.bat"; process.StartInfo.CreateNoWindow = true; process.Start(); System.Environment.CurrentDirectory = CurrentDirectory;
代碼以下:
using System.ServiceProcess; ServiceController serviceController = new ServiceController("ServiceTest"); serviceController.Start();
ServiceController serviceController = new ServiceController("ServiceTest"); if (serviceController.CanStop) serviceController.Stop();
ServiceController serviceController = new ServiceController("ServiceTest"); if (serviceController.CanPauseAndContinue) { if (serviceController.Status == ServiceControllerStatus.Running) serviceController.Pause(); else if (serviceController.Status == ServiceControllerStatus.Paused) serviceController.Continue(); }
ServiceController serviceController = new ServiceController("ServiceTest"); string Status = serviceController.Status.ToString();
本文對Windows service的上述配置都未作詳細解釋,可是按上述步驟就能夠製做可運行的Windows Service,從而達到了工做的需求。