VS2013創(chuàng)建Windows服務(wù)與調(diào)試服務(wù)的圖文方法
1、創(chuàng)建Windows服務(wù)
說明:
a)Description 服務(wù)描述,直接顯示到Windows服務(wù)列表中的描述;
b)DisplayName 服務(wù)顯示名稱,直接顯示到Windows服務(wù)列表中的名稱;
c)ServiceName 服務(wù)進程名稱,安裝與卸載服務(wù)時的唯一標識。
單擊“serviceProcessInstaller1”,在其屬性窗口中設(shè)置Account帳號方式,建議為LocalService(當然也可以Account屬性改為 LocalSystem,這樣,不論是以哪個用戶登錄的系統(tǒng),服務(wù)總會啟動)。
編寫安裝和卸載腳本,并將放在bin/debug或bin/Release文件夾下。
安裝腳本
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe %~dp0exe程序的名稱.exe Net Start 服務(wù)名稱 sc config 服務(wù)名稱 start= auto pause
這里注意,在exe程序的名稱前面有 %~dp0 這是代表當前位置
服務(wù)名稱 對應(yīng) 上面我們創(chuàng)建服務(wù)時ServerName的名稱
卸載腳本
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u %~dp0exe程序的名稱.exe pause
同時還要注意一下,本人用的.NET4.0的版本,所以\Microsoft.NET\Framework\v4.0.30319\installutil.exe 這一段要根據(jù)你機器安裝.NET的版本來定。
其實腳本主要是通過installutil.exe 來進行安裝和卸載服務(wù)的,同時此處涉及的批處理命令不多。
2、調(diào)試windows服務(wù)
在項目中不用啟動windows服務(wù)項目,而是直接附加進程來進行調(diào)試。
在可用進程中,查找到你剛才通過腳本安裝的服務(wù)就可以了。
再發(fā)一個寫入服務(wù)代碼的Demo
public partial class MMSServer : ServiceBase { private Timer time = new Timer(); public MMSServer() { InitializeComponent(); } protected override void OnStart(string[] args) { #if DEBUG if (!Debugger.IsAttached) Debugger.Launch(); Debugger.Break(); #endif WriteLog("服務(wù)啟動,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"); time.Elapsed += new ElapsedEventHandler(MethodEvent); time.Interval = 3 * 1000; time.Start(); } protected override void OnPause() { #if DEBUG if (!Debugger.IsAttached) Debugger.Launch(); Debugger.Break(); #endif WriteLog("服務(wù)暫停,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"); base.OnPause(); } protected override void OnContinue() { #if DEBUG if (!Debugger.IsAttached) Debugger.Launch(); Debugger.Break(); #endif WriteLog("服務(wù)恢復(fù),時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"); base.OnContinue(); } protected override void OnShutdown() { WriteLog("計算機關(guān)閉,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"); base.OnShutdown(); } private void MethodEvent(object source, System.Timers.ElapsedEventArgs e) { time.Enabled = false; string result = string.Empty; try { //......... result = "執(zhí)行成功,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"; } catch (Exception ex) { result = "執(zhí)行失敗,原因:" + ex.Message + "\r\n"; } finally { WriteLog(result); time.Enabled = true; } } protected override void OnStop() { #if DEBUG if (!Debugger.IsAttached) Debugger.Launch(); Debugger.Break(); #endif WriteLog("服務(wù)停止,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n"); } /// <summary> /// 日志記錄 /// </summary> /// <param name="logInfo"></param> private void WriteLog(string logInfo) { try { string logDirectory = AppDomain.CurrentDomain.BaseDirectory + "\\Logs"; if (!Directory.Exists(logDirectory)) { Directory.CreateDirectory(logDirectory); } string filePath = logDirectory + "\\" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt"; File.AppendAllText(filePath, logInfo); } catch { } } }
以上就是關(guān)于VS2013創(chuàng)建Windows服務(wù)與調(diào)試服務(wù)的全部內(nèi)容了,希望大家以后多多支持腳本之家
相關(guān)文章
Unity?UGUI的TouchInputModule觸摸輸入模塊組件介紹使用示例
這篇文章主要為大家介紹了Unity?UGUI的TouchInputModule觸摸輸入模塊組件介紹使用示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-08-08C#實現(xiàn)給Word每一頁設(shè)置不同圖片水印
Word中設(shè)置水印時,可加載圖片設(shè)置為水印效果,但通常添加水印效果時,會對所有頁面都設(shè)置成統(tǒng)一效果。本文將利用C#實現(xiàn)給Word每一頁設(shè)置不同圖片水印的效果,需要的可以參考一下2022-02-02C#實現(xiàn)Windows服務(wù)測試與調(diào)試
這篇文章介紹了C#實現(xiàn)Windows服務(wù)測試與調(diào)試的方法,文中通過示例代碼介紹的非常詳細。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-02-02