-
C#启动Windows IIS服务的实例
C#启动指定的Windows信使服务,本例中是启动IIS服务,在Windows XP下可完美运行,在Windows7下不行好像,本程序演示如何在C#的程序中启动一个指定的Windows内置服务的方法。具体的实现代码:
ServiceController service = new ServiceController();//创建服务控制对象
service.ServiceName = "Messenger";//启动Windows信史服务
//判断当前服务状态
if (service.Status == ServiceControllerStatus.Stopped)
{
try
{
service.Start();// 启动服务
service.WaitForStatus(ServiceControllerStatus.Running);
}
catch (InvalidOperationException)
{
MessageBox.Show("不能启动该服务!");
}
}
- 2022-02-13 12:56:43下载
- 积分:1
-
cvibuild.wendu
基于LabWindows/CVI温度采样软件的设计(Based on LabWindows/CVI temperature sampling software design
)
- 2012-02-29 23:30:56下载
- 积分:1
-
2004年研赛优秀论文选
说明: 全国大学生数学建模竞赛试题集2004,数学建模实例(Question Set of National College Students Mathematical Modeling Competition 2004, Example of Mathematical Modeling)
- 2020-06-18 21:40:01下载
- 积分:1
-
a quick panels can be used in their procedures on it!
一个快捷面板,可以将自己常用的程序放在其中!-a quick panels can be used in their procedures on it!
- 2022-05-06 09:33:08下载
- 积分:1
-
ffmpegmfc
mfc的ffmpeg分析解码播放器,分析和播放包括h264流等(MFC ffmpeg analysis decoder player)
- 2018-10-30 13:12:37下载
- 积分:1
-
Maga_test
test maga board arduino
- 2019-06-15 19:12:28下载
- 积分:1
-
易语言数据库教程
有关于易语言的数据开发的简易教程易语言数据库教程(A Simple Course on Data Development of Easy Language)
- 2019-04-16 17:02:53下载
- 积分:1
-
VC中使用 Flash 美化你的程序
VC中使用 Flash 美化你的程序-VC Flash beautify your procedures
- 2022-01-24 16:00:36下载
- 积分:1
-
LEON3 GRlip SOC IP core. Memory controller.
LEON3 SOC GRlip IP core. Memory controller.-LEON3 GRlip SOC IP core. Memory controller.
- 2022-03-17 16:16:32下载
- 积分:1
-
cs
说明: 压缩感知 omp算法、bpdn算法恢复频率(compressed sensing OMP)
- 2020-09-21 21:57:49下载
- 积分:1