S
H
A
R
E

Sunday, May 29, 2011

Kill Executable by FileName (CSharp)

CSharp Exe Killer

There is the main code to do it:

private void button1_Click(object sender, EventArgs e)
        {
            Process[] p = Process.GetProcessesByName(textBox1.Text);
                foreach (Process a in p)
                {
                    a.Kill();
                }
           
        }

Download Project Here

0 comments:

Post a Comment