|
|
|
|
|
Home
»
How do I
»
Killing Processes from a Windows Form Application in C#
|
|
|
Author Rank:
|
|
Technologies:
.NET 1.0/1.1, Windows Forms,Visual C# .NET
|
|
Total downloads :
|
370
|
|
Total page views :
|
11486
|
|
Rating :
|
|
4/5
|
|
This article has been rated :
|
2 times
|
|
|
|
|
Download
Files:
|
|
|
|
|
|
|
|
|
|
|
Similar ArticlesMost ReadTop RatedLatest
|
|
Related EbooksTop Videos
|
|
|
Description
|
|
The mission of this book is to provide you with a solid foundation of the C# language and the key aspects of the .NET platform.
|
|
|
|
|
|
|
|
|
|
|
|
|
Introduction
This article provides a simple example of how to use the System.Diagnostics.Process library to display a list of running processes, and to select and kill processes by their process name and ID. It would not be a major trick to display additional information about the process using the same library or to kill processes by their ID or name alone rather than their name and ID but in this example, process names and IDs are used for display purposes and the purpose of killing a running process.

Figure 1: Listing and Killing Processes by Process Name and ID
Getting Started
There is a single solution included with this download, the solution contains a Win Forms project called "ProcessKiller"; this project contains one form (Form1.cs) and all of the code required to display and kill processes is contained within that single form class. If you open the attached project into Visual Studio 2008; you should see the following in the solution explorer:

Figure 2: Solution Explorer
Code: The Main Form
The main form contains all of the user interface elements necessary to display and update the list of currently running processes found on the user's machine. It also contains a button handler which will kill a process by the process name. You can also kill a process by its ID but in terms of readability, if the user is selecting the process, the process name is going to make a lot more sense to them than will the process ID.
The class begins with the normal and default imports:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text; using System.Windows.Forms;
The constructor calls a method called "UpdateProcessList" which is used to get and display a list of running processes; it will be described shortly.
namespace ProcessKiller
{
public partial class frmProcessKiller : Form
{
/// <summary>
/// constructor
/// </summary>
public frmProcessKiller()
{
InitializeComponent();
// get an initial list of processes
UpdateProcessList();
}
The next bit of code is the UpdateProcessList function; this function clears the listbox of any existing entries and then loops through each of the current processes, adding the name and ID of each process to the list (as Process Name – ID). At the end of the function, a status message is updated to display the current number of found processes.
/// <summary>
/// Loop through the list of running processes
/// and add each process name to the process
/// listbox
/// </summary>
private void UpdateProcessList()
{
// clear the existing list of any items
lstProcesses.Items.Clear();
// loop through the running processes and add
//each to the list
foreach (System.Diagnostics.Process p in
System.Diagnostics.Process.GetProcesses())
{
lstProcesses.Items.Add(p.ProcessName + " - " + p.Id);
}
// display the number of running processes in
// a status message at the bottom of the page
tslProcessCount.Text = "Processes running: " +
lstProcesses.Items.Count.ToString();
}
The next bit of code in the application is the update button's click event handler; all it does is to call the UpdateProcessList function to update the contents of the listbox.
/// <summary>
/// Manually update the contents of the process
/// listbox
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnUpdateProcessList_Click(object sender, EventArgs e)
{
UpdateProcessList(); }
The last bit of the code in the application is used to kill a running process. Since you can have multiple processes with the same name, it was necessary to add in the ID along with the name in order to make some distinction between multiple instances of a single application, else, we would end up killing all running instances of the application which may or may not be desirable depending upon what you are doing. If you do want to kill off all running instances of an application, disregard the ID and kill all running processes with the same process name.
In the kill button click event handler; we again loop through all of the running processes and we take the selected item from the process/ID list, and parse it into a string containing the process name and an integer value containing the ID. If the current process (in the loop) matches on both the process name and process ID, the process is killed. At the end, the handler calls the update method used to repopulate the listbox such that is displays the current list of active processes and their IDs. /// <summary>
/// Kill the process selected in the process name
/// and ID listbox
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnKill_Click(object sender, EventArgs e)
{
// loop through the running processes looking for a match
// by comparing process name to the name selected in the listbox
foreach (System.Diagnostics.Process p in
System.Diagnostics.Process.GetProcesses())
{
string[] arr = lstProcesses.SelectedItem.ToString().Split('-');
string sProcess = arr[0].Trim();
int iId = Convert.ToInt32(arr[1].Trim());
if (p.ProcessName == sProcess && p.Id == iId)
{
p.Kill();
}
}
// update the list to show the killed process
// has been removed
UpdateProcessList();
}
That concludes the description of all of the code used in this example.
Summary
The article shows one approach that may be used to display a list of current processes, and to single out and kill a single process based upon both the process name and its ID. One could also kill all instances of a particular process by killing all processes that match on name without giving any consideration to the process ID. The approach shown allows for singling out specific instances of a process and killing it without taking down all other matching processes.
|
|
|
Login
to add your contents and source code to this article
|
|
|
|
|
|
|
|
|
|
|
|
Scott Lysle
Freelance software developer residing in Alabama. Bachelors, Masters Degrees from Wichita State University. I spent the first half of my career working on aircraft controls and displays and in that time I worked on the cockpits for the OH-58 AHIP, the AH-1W, the V-22, the F-22, the C-130J, the C-5 AMP, AWACS, JPATS, and a few others. Since 1997 I have been largely involved with Windows and web development, GIS application development, consumer electronics development (embedded linux/java), but still sometimes work on aircraft and military projects, the most recent of which was the presidential transport helicopter. I tend to work primarily with C/C++, Java, VB, and C#.
|
|
|
|
|
|
|
|
|
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional
consulting company, our consultants are well-known experts in .NET and many of them
are MVPs, authors, and trainers. We specialize in Microsoft .NET development and
utilize Agile Development and Extreme Programming practices to provide fast pace
quick turnaround results. Our software development model is a mix of Agile Development,
traditional SDLC, and Waterfall models.
|
|
Click here to learn more about C# Consulting. |
|
|
|
|
|
|
|
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon.
Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees.
As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
|
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
|
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
|
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today. With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications. Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
|
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or
application via a range of API's. Learn More about our API connections.
|
Microsoft Visual Studio 2010
Microsoft Visual Studio 2010 offers more to developers than any other
Visual Studio release. Work more productively and collaboratively-with
greater control over your work at every step. The Beta 2 can give you a
head start on achieving efficiency.
|
|
|
|
|
|
|
|
|
Download
Files:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|