程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> .net windows service開發與安裝

.net windows service開發與安裝

編輯:C#入門知識

1、創建一個Windows Service項目名為WindowsServiceTest;

2、添加一個Windows Service項名為TestService.cs;

3、實現TestService類的OnStart和OnEnd;

4、右鍵點擊TestService的設計視圖,選擇右鍵菜單項Add Installer,vs自動創建一個ProjectInstaller.cs類,ProjectInstaller.cs中自動附帶了兩個serviceInstaller1和serviceProcessInstaller1成員;(在serviceInstaller1和serviceProcessInstaller1中根據實際設置啟動帳戶和啟動方式)

5、Build完成,創建一個install.bat批處理文件,如下用於安裝:


[html]
C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil d:\output\WindowsServiceTest.exe 
 
pause 

C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil d:\output\WindowsServiceTest.exe

pause
如下用於卸載:


[html]
C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil d:\output\WindowsServiceTest.exe -u 
 
pause 

C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil d:\output\WindowsServiceTest.exe -u

pause

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved