-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
40 lines (36 loc) · 1.29 KB
/
Copy pathProgram.cs
File metadata and controls
40 lines (36 loc) · 1.29 KB
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
using System;
using System.Diagnostics;
namespace StartProcess
{
class Program
{
static void Main(string[] args)
{
string strCheckName;
string strStartName;
bool blnFind=false;
Process[] processes = Process.GetProcesses();
if(args.Length==0) {
Console.Write("Usage: StartProcess {Process Name}");
return;
}
strStartName=args[0]+" ";
strCheckName=args[0];
if(args.Length>1) strCheckName=args[2];
strCheckName=strCheckName+" ";
strCheckName=strCheckName.Split(" ")[0];
foreach (Process process in processes)
{
if (process.ProcessName==strCheckName){
// Console.WriteLine("Process Name: {0}, Responding: {1}", process.ProcessName, process.Responding);
if(process.Responding!=true) process.Kill();
else {
blnFind=true;
break;}
}
}
if((args.Length>1 && blnFind) || (args.Length==1 && !blnFind))
Process.Start(strStartName.Split(" ")[0],strStartName.Split(" ")[1]);
}
}
}