雷火电竞-中国电竞赛事及体育赛事平台

歡迎來到入門教程網(wǎng)!

C#教程

當前位置:主頁 > 軟件編程 > C#教程 >

VS2013創(chuàng)建Windows服務與調試服務的圖文方法

來源:本站原創(chuàng)|時間:2020-01-10|欄目:C#教程|點擊:

1、創(chuàng)建Windows服務

 

說明:

a)Description 服務描述,直接顯示到Windows服務列表中的描述;

b)DisplayName 服務顯示名稱,直接顯示到Windows服務列表中的名稱;

c)ServiceName 服務進程名稱,安裝與卸載服務時的唯一標識。

單擊“serviceProcessInstaller1”,在其屬性窗口中設置Account帳號方式,建議為LocalService(當然也可以Account屬性改為 LocalSystem,這樣,不論是以哪個用戶登錄的系統(tǒng),服務總會啟動)。

編寫安裝和卸載腳本,并將放在bin/debug或bin/Release文件夾下。

安裝腳本

%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe %~dp0exe程序的名稱.exe
Net Start 服務名稱
sc config 服務名稱 start= auto
pause

這里注意,在exe程序的名稱前面有 %~dp0 這是代表當前位置

服務名稱 對應 上面我們創(chuàng)建服務時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 來進行安裝和卸載服務的,同時此處涉及的批處理命令不多。

2、調試windows服務

在項目中不用啟動windows服務項目,而是直接附加進程來進行調試。

 

在可用進程中,查找到你剛才通過腳本安裝的服務就可以了。

再發(fā)一個寫入服務代碼的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("服務啟動,時間:" + 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("服務暫停,時間:" + 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("服務恢復,時間:" + DateTime.Now.ToString("HH:mm:ss") + "\r\n");
      base.OnContinue();
    }

    protected override void OnShutdown()
    {
      WriteLog("計算機關閉,時間:" + 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("服務停止,時間:" + 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
      {

      }
    }
  }

以上就是關于VS2013創(chuàng)建Windows服務與調試服務的全部內容了,希望大家以后多多支持我們

上一篇:淺談c#表達式樹Expression簡單類型比較demo

欄    目:C#教程

下一篇:使用C#開發(fā)ActiveX控件

本文標題:VS2013創(chuàng)建Windows服務與調試服務的圖文方法

本文地址:http://www.jygsgssxh.com/a1/C_jiaocheng/5901.html

網(wǎng)頁制作CMS教程網(wǎng)絡編程軟件編程腳本語言數(shù)據(jù)庫服務器

如果侵犯了您的權利,請與我們聯(lián)系,我們將在24小時內進行處理、任何非本站因素導致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權所有