狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

C#守護進程(Windows后臺服務程序及前臺管理程序設計)

admin
2021年1月29日 16:59 本文熱度 2285

一、創建Windows Service

1、新建一個Windows Service,并將項目名稱改為“MyWindowsService”,如下圖所示:

2、在解決方案資源管理器內將Service1.cs改為MyService1.cs后并點擊“查看代碼”圖標按鈕進入代碼編輯器界面,如下圖所示:


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

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},服務停止!");

            }

        }

    }

}


4、雙擊項目“MyWindowsService”進入“MyService”設計界面,在空白位置右擊鼠標彈出上下文菜單,選中“添加安裝程序”,如下圖所示:

5、此時軟件會生成兩個組件,分別為“serviceInstaller1”及“serviceProcessInstaller1”,如下圖所示:


6、點擊“serviceInstaller1”,在“屬性”窗體將ServiceName改為MyService,Description改為我的服務,StartType保持為Manual,如下圖所示:


7、點擊“serviceProcessInstaller1”,在“屬性”窗體將Account改為LocalSystem(服務屬性系統級別),如下圖所示:


8、鼠標右鍵點擊項目“MyWindowsService”,在彈出的上下文菜單中選擇“生成”按鈕,如下圖所示:


9、至此,Windows服務已經創建完畢。

二.安裝和啟動和卸載服務(2種方式)

  1.命令行安裝、啟動、和卸載

    (1)在電腦中找到找到cmd.exe,一般在C:\Windows\System32目錄下,然后以管理員身份運行

    (2)在電腦系統中找到InstallUtil.exe,一般在C:\Windows\Microsoft.NET\Framework\v4.0.30319下面,DOS框切換到這個目錄下

    (3)執行命令:InstallUtil.exe + C:\Users\zhao\Desktop\111\text\WindowsService1\bin\Debug\WindowsService1.exe             (安裝服務)

    (4)net  start  MyService(服務名)            (啟動服務)

    服務啟動到此結束,如果要卸載此服務,執行命令:sc delete MyService

  2.建立一個窗體,然后去安裝、啟動、停止和卸載服務

    (1)、在同一個解決方案里新建一個Windows Form項目,并命名為WindowsServiceClient,如下圖所示:

      

    (2)、將該項目設置為啟動項目,并在窗體內添加四個按鈕,分別為安裝服務、啟動服務、停止服務及卸載服務,如下圖所示:

      

    (3)、按下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 = @"C:\Users\zhao\Desktop\111\text\WindowsService1\bin\Debug\WindowsService1.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();

                }

            }

        }

    }

}

    (4)、為了后續調試服務及安裝卸載服務的需要,將已生成的MyWindowsService.exe引用到本Windows窗體,如下圖所示:

      

    (5)、由于需要安裝服務,故需要使用UAC中Administrator的權限,鼠標右擊項目“WindowsServiceClient”,在彈出的上下文菜單中選擇“添加”->“新建項”,在彈出的選擇窗體中選擇“應用程序清單文件”并單擊確定,如下圖所示:

      

    (6)、打開該文件,并將<requestedExecutionLevel level="asInvoker" uiAccess="false" />改為<requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />,如下圖所示:    

      

    (7)、使用WIN+R的方式打開運行窗體,并在窗體內輸入services.msc后打開服務,如下圖所示:

      

    (8)、點擊窗體內的“安裝服務”按鈕,將會在服務中出現MyService,如下圖所示:  

      

    (9)、點擊“運行服務”按鈕,將啟動并運行服務,如下所示:

      

    (10)、點擊“停止服務”按鈕,將會停止運行服務,如下圖所示:

      

    (11)、點擊“卸載服務”按鈕,將會從服務中刪除MyService服務。

    (12)、以上啟動及停止服務將會寫入D:\MyServiceLog.txt,內容如下所示:

           

補充:如何調試服務

1、要調試服務,其實很簡單,如需將服務附加進程到需要調試的項目里面即可,假如要調試剛才建的服務,現在OnStop事件里設置斷點,如下所示:

 

2、啟動“WindowsServiceClient”項目,在“調試”菜單中選擇“附件到進程”(服務必須事先安裝),如下所示:


3、找到“MyWindowsService.exe”,點擊“附加”按鈕,如下圖所示:


4、點擊“停止服務”按鈕,程序將會在設置斷點的地方中斷,如下圖所示:



該文章在 2021/1/29 16:59:27 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved