windows服务大家都不陌生,windows服务组的概念,貌似ms并没有这个说法。
作为一名软件开发者,我们的机器上安装有各种开发工具,伴随着各种相关服务。
visual studio可以不打开,sqlserver management studio可以不打开,但是sqlserver服务却默认开启了。下班后,我的计算机想用于生活、娱乐,不需要数据库服务这些东西,尤其是在安装了oracle数据库后,我感觉机器吃力的很。
每次开机后去依次关闭服务,或者设置手动开启模式,每次工作使用时依次去开启服务,都是一件很麻烦的事情。因此,我讲这些相关服务进行打包,打包为一个服务组的概念,并通过程序来实现服务的启动和停止。
这样我就可以设置sqlserver、oracle、vmware等的服务为手动开启,然后在需要的时候选择打开。
以上废话为工具编写背景,也是一个应用场景描述,下边附上代码。
服务组的定义,我使用了ini配置文件,一个配置节为一个服务器组,配置节内的key、value为服务描述和服务名称。
配置内容的先后决定了服务开启的顺序,因此类似oracle这样的对于服务开启先后顺序有要求的,要定义好服务组内的先后顺序。
value值为服务名称,服务名称并非services.msc查看的名称栏位的值,右键服务,可以看到,显示的名称其实是服务的显示名称,这里需要的是服务名称。
配置文件如下图所示
注:ini文件格式:
[section1]
key1=value1
key2=value2
程序启动,主窗体加载,获取配置节,即服务组。
1
2
3
|
string path = directory.getcurrentdirectory() + "/config.ini" ; list< string > servicegroups = inihelper.getallsectionnames(path); cboservicegroup.datasource = servicegroups; |
其中的ini服务类,参考链接:c#操作ini文件的辅助类inihelper
服务的启动和停止,需要引入system.serviceprocess程序集。
启动服务组:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
if ( string .isnullorempty(cboservicegroup.text)) { messagebox.show( "请选择要操作的服务组" ); return ; } // string path = directory.getcurrentdirectory() + "/config.ini" ; string section = cboservicegroup.text; string [] keys; string [] values; inihelper.getallkeyvalues(section, out keys, out values, path); // foreach ( string value in values) { servicecontroller sc = new servicecontroller(value); // try { servicecontrollerstatus scs = sc.status; if (scs != servicecontrollerstatus.running) { try { sc.start(); } catch (exception ex) { messagebox.show( "服务启动失败\n" + ex.tostring()); } } } catch (exception ex) { messagebox.show( "不存在服务" + value); } // } // messagebox.show( "服务启动完成" ); |
停止服务组
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
if ( string .isnullorempty(cboservicegroup.text)) { messagebox.show( "请选择要操作的服务组" ); return ; } // string path = directory.getcurrentdirectory() + "/config.ini" ; string section = cboservicegroup.text; string [] keys; string [] values; inihelper.getallkeyvalues(section, out keys, out values, path); // foreach ( string value in values) { servicecontroller sc = new servicecontroller(value); try { servicecontrollerstatus scs = sc.status; if (scs != servicecontrollerstatus.stopped) { try { sc.stop(); } catch (exception ex) { messagebox.show( "服务停止失败\n" + ex.tostring()); } } } catch (exception ex) { messagebox.show( "不存在服务" + value); } // } // messagebox.show( "服务停止完成" ); } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/mahongbiao/p/3762437.html