ServiceController控制windows服務

來源:互聯網
上載者:User

1、引用System.ServiceProcess.dll

2、引用System.ServiceProcess命名空間

using System.ServiceProcess;

3、.聲明ServiceController變數

private ServiceController _controller;

4、假設服務名為ServicesName, 編寫開始服務,停止服務,重啟服務的代碼如下

A:開始服務

 1  private void StartService()
2 {
3 this._controller = new ServiceController("ServicesName");
4 try
5 {
6 if ((_controller.Status.Equals(ServiceControllerStatus.Stopped)) ||
7 (_controller.Status.Equals(ServiceControllerStatus.StopPending)))
8 {
9 _controller.Start();
10 }
11 else
12 {
13 _controller.Stop();
14 }
15 }
16 finally
17 {
18 this._controller.Refresh();
19 this._controller.Close();
20 }
21 }

B:停止服務

 1 private void StopService()
2 {
3 this._controller = new ServiceController("ServicesName");
4 try
5 {
6 this._controller.Stop();
7 this._controller.WaitForStatus(ServiceControllerStatus.Stopped);
8 }
9 finally
10 {
11 this._controller.Refresh();
12 this._controller.Close();
13 }
14 }

C:重啟服務

 1  private void ResetService()
2 {
3 this._controller = new ServiceController("ServicesName");
4 try
5 {
6 this._controller.Stop();
7 this._controller.WaitForStatus(ServiceControllerStatus.Stopped);
8 this._controller.Start();
9 this._controller.WaitForStatus(ServiceControllerStatus.Running);
10 }
11 finally
12 {
13 this._controller.Refresh();
14 this._controller.Close();
15 }
16 }

D:若已停止則啟動反則停止

 1  private void SStopService()
2 {
3 this._controller = new ServiceController("ServicesName");
4 try
5 {
6 this._controller.Stop();
7 this._controller.WaitForStatus(ServiceControllerStatus.Stopped);
8 this._controller.Start();
9 this._controller.WaitForStatus(ServiceControllerStatus.Running);
10 }
11 finally
12 {
13 this._controller.Refresh();
14 this._controller.Close();
15 }
16
17 }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.