標籤:des winform style class blog c
原文地址:http://blog.itpub.net/23109131/viewspace-688117/
第一步:建立服務架構
建立一個新的 Windows 服務項目,可以從Visual C# 工程中選取 Windows 服務(Windows Service)選項,給工程一個新檔案名稱,然後點擊確定。現在項目中有個Service1.cs類:
查看其各屬性的含意是:
Autolog 是否自動寫入系統的記錄檔
CanHandlePowerEvent 服務時候接受電源事件
CanPauseAndContinue 服務是否接受暫停或繼續啟動並執行請求
CanShutdown 服務是否在運行它的電腦關閉時收到通知,以便能夠調用 OnShutDown 過程
CanStop 服務是否接受停止啟動並執行請求
ServiceName 服務名
第二步:向服務中增加功能
在 .cs代碼檔案中我們可以看到,有兩個被忽略的函數 OnStart和OnStop。
OnStart函數在啟動服務時執行,OnStop函數在停止服務時執行。這個例子是:當啟動和停止服務時,定時顯示“hello,你好”;
首先在Service1.cs設計中拖個timer控制項,設定好它的Interval=60000,與要做的功能
代碼如下:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//OnStart函數在啟動服務時執行 protected override void OnStart( string [] args) { this .timer1.Start(); } // OnStop函數在停止服務時執行 protected override void OnStop() { this .timer1.Stop(); } private void timer1_Tick( object sender, EventArgs e) { System.Diagnostics.Process.Start( "http://www.baidu.com" ); } |
第三步: 將安裝程式添加到服務應用程式
1:在解決方案中,右擊服務Service1.cs設計檢視。
2:在屬性視窗中,單擊-添加安裝程式
這時項目中就添加了一個新類 ProjectInstaller 和兩個安裝組件 ServiceProcessInstaller 和 ServiceInstaller,並且服務的屬性值被複製到組件。
3:若要確定如何啟動服務,請單擊 ServiceInstaller 組件並將 StartType 屬性設定為適當的值。
Manual 服務安裝後,必須手動啟動。
Automatic 每次電腦重新啟動時,服務都會自動啟動。
Disabled 服務無法啟動。
4:將serviceProcessInstaller類的Account屬性改為 LocalSystem
這樣,不論是以哪個使用者登入的系統,服務總會啟動。
第四步:產生服務程式
通過從產生菜單中選擇產生來產生項目shift+F6。或重建項目注意 不要通過按 F5 鍵來運行項目——不能以這種方式運行服務項目。
第五步:服務的安裝與卸載
訪問項目中的已編譯可執行檔所在的目錄。
用項目的輸出作為參數,從命令列運行 InstallUtil.exe。在命令列中輸入下列代碼:
installutil WindowsService1.exe
卸載服務
用項目的輸出作為參數,從命令列運行 InstallUtil.exe。
installutil /u WindowsService1.exe
附:installutil.exe 在安裝VS電腦的C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe
到vs2008命令提示字元下installutil.exe /?可以查看其協助說明
推薦的另一中安裝服務的方法
用winform來調用安裝,當點擊按鈕時,安裝服務.
1.項目需要添加引用System.Configuration.Install和System.ServiceProcess
代碼如下:
using System.Configuration.Install;
using System.ServiceProcess;
/// <summary>
/// 安裝服務
/// </summary>
private void btnInstall_Click(object sender, EventArgs e)
{
string[] args = { "WindowsService1.exe" };
//卸載服務 string[] args = {"/u", "WindowsService1.exe"};
if (!ServiceIsExisted("Service1"))//這裡的Service1是對應真實項目中的服務名稱
{
try
{
ManagedInstallerClass.InstallHelper(args); //參數 args 就是你用 InstallUtil.exe 工具安裝時的
參數。一般就是一個exe的檔案名稱
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}
}
else
{
MessageBox.Show("該服務已經存在,不用重複安裝。");
}
}
/// <summary>
/// 檢查指定的服務是否存在。
/// </summary>
/// <param name="serviceName">要尋找的服務名字</param>
/// <returns></returns>
private bool ServiceIsExisted(string svcName)
{
ServiceController[] services = ServiceController.GetServices();
foreach (ServiceController s in services)
{
if (s.ServiceName == svcName)
{
return true;
}
}
return false;
}
通過System.Configuration.Install.ManagedInstallerClass 類中的靜態方法 InstallHelper就可以實現手工安裝。 該方法的
簽名如下:
public static void InstallHelper(string[] args)
其中參數 args 就是你用 InstallUtil.exe 工具安裝時的參數。一般就是一個exe的檔案名稱
第六步:調試服務
安裝後,服務不會自動啟動,服務不可以與案頭互動
1.設定服務安裝後自動啟動
添加serviceInstaller1的AfterInstall事件
?
1 2 3 4 5 6 |
using System.Diagnostics; private void serviceInstaller1_AfterInstall( object sender, InstallEventArgs e) { System.ServiceProcess.ServiceController s = new System.ServiceProcess.ServiceController( "Service1" ); s.Start(); //設定服務安裝後立即啟動 } |
2.設定允許服務與案頭互動方法
讓服務啟動某個應用程式,就要修改服務的屬性,勾選允許服務與案頭互動,#region 設定服務與案頭互動
?
1 2 3 4 5 6 7 8 9 10 11 12 |
/// <summary> /// 設定服務與案頭互動,在serviceInstaller1的AfterInstall事件中使用 /// </summary> /// <param name="serviceName">服務名稱</param> private void SetServiceDesktopInsteract( string serviceName) { System.Management.ManagementObject wmiService = new System.Management.ManagementObject( string .Format ( "Win32_Service.Name=‘{0}‘" , serviceName)); System.Management.ManagementBaseObject changeMethod = wmiService.GetMethodParameters( "Change" ); changeMethod[ "DesktopInteract" ] = true ; System.Management.ManagementBaseObject utParam = wmiService.InvokeMethod( "Change" , changeMethod, null <br>); }<br>#endregion |
3.windows服務是不執行Timer控制項的,解決辦法
把上面用到的Timer控制項清除
public Service1()
{
InitializeComponent();
System.Timers.Timer t = new System.Timers.Timer();
t.Interval =1000*15;
t.Elapsed += new System.Timers.ElapsedEventHandler(RunWork);
t.AutoReset = true;//設定是執行一次(false),還是一直執行(true);
t.Enabled = true;//是否執行
}
public void RunWork(object source, System.Timers.ElapsedEventArgs e)
{
//要定時處理的事情
//這樣服務就可以定時執行任務了
}
總結:windows服務編程
1.服務不會執行Timer控制項
2.預設服務安裝完成後,是不會自動啟動,不能與案頭互動
3.安裝服務時,推薦建立個winform項目,用winform項目來執行服務的安裝與卸載
4.OnStart函數在啟動服務時執行,OnStop函數在停止服務時執行。
5.右擊-將服務添加到應用程式