码迷,mamicode.com
首页 > Windows程序 > 详细

C# Windows Services 启动和结束其它进程

时间:2015-01-18 13:04:53      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

将exe所在的绝对路径和进程名配置到配置文件中

<add key="FilePath" value="D:\ABC\ABCD.Console.exe"/>
<add key="ProcessName" value="ABCD.Console"/>

 

代码如下:/// <summary>/// 进程名/// </summary>

private Process dataCenterProcess;
// 启动
{
this.dataCenterProcess = new Process(); this.dataCenterProcess.StartInfo.FileName = this.filePath; this.dataCenterProcess.StartInfo.RedirectStandardInput = true; this.dataCenterProcess.StartInfo.RedirectStandardOutput = true; this.dataCenterProcess.StartInfo.CreateNoWindow = true; this.dataCenterProcess.StartInfo.UseShellExecute = false; this.dataCenterProcess.Start();
}
// 结束
{
this.dataCenterProcess.Close(); Process[] processes = Process.GetProcessesByName(this.processName); foreach (Process p in processes) {   p.Kill();   p.Close(); }
}

 

C# Windows Services 启动和结束其它进程

标签:

原文地址:http://www.cnblogs.com/mtsl/p/4231600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!