Click here to Skip to main content
15,884,353 members
Articles / Mobile Apps / Windows Mobile

Compact Framework Process class that supports fully specified file paths

Rate me:
Please Sign up or sign in to vote.
4.90/5 (17 votes)
30 May 2009CPOL2 min read 90.6K   4.8K   26   29
Terminate a process, or check if it is running, using the full file path. It also enumerates processes returning the full path to the running EXE file.

Introduction

I needed to be able to terminate all the processes in a specific folder.

The Process class in the .NET Compact Framework is limited in its functionality. You cannot even enumerate processes. You can find code to do this on the Internet, but all the samples I found only return the name of the EXE file of a process. What I needed was the full path to the EXE file.

After some research, I found the solution. I wrapped the result into the ProcessCE class.

What can the ProcessCE class do for you?

  • Enumerate running processes;
  • Each enumerated process contains the full path to the EXE file;
  • Check in a single function call if a process is running by specifying the full path to the EXE file;
  • Kill a process in a single function call by specifying the full path to the EXE file;
  • Find the Process ID (PID) in a single function call by specifying the full path to the EXE file.

This code is based on several code snippets and examples I found on the Internet.

Using the code

The ProcessCE class is straightforward and easy to use. Download ProcessCE.zip and add the containing ProcessCE.cs file to your project. Then, add the following using statement to the source file where you want to use the class:

C#
using Terranova.API;

To enumerate running processes:

C#
ProcessInfo[] list = ProcessCE.GetProcesses();
 
foreach (ProcessInfo item in list)
{
   Debug.WriteLine("Process item: " + item.FullPath);
   if (item.FullPath == @"\Windows\iexplore.exe")
       item.Kill();
}

// Sample output:
// Process item: \Windows\nk.exe
// Process item: \Windows\filesys.exe
// Process item: \Windows\device.exe
// Process item: \Windows\services.exe
// Process item: \Windows\gwes.exe
// Process item: \Windows\shell32.exe
// Process item: \Windows\poutlook.exe
// Process item: \Program Files\Geso\Discovery\TerranovaWakeUpWCE.exe

To check if a process is running:

C#
bool result = ProcessCE.IsRunning(@"\Windows\iexplore.exe");

To find a Process ID (PID):

C#
IntPtr pid = ProcessCE.FindProcessPID(@"\Windows\iexplore.exe");
 
if (pid == IntPtr.Zero)
  throw new Exception("Process not found.");

To terminate a process:

C#
bool result = ProcessCE.FindAndKill(@"\Windows\iexplore.exe"); 

ProcessCE.FindAndKill() will return false if the EXE file was not found. If terminating the process fails, it will throw a Win32Exception.

Points of interest

This code is for use with Windows CE and Windows Mobile only. The code was tested on Windows Mobile 6.1 (Windows CE 5.2). Windows CE 4 should be no problem.

Tip: A code example to enumerate processes that can be found on several websites was crashing randomly with Win32 error 8 on several devices. This is an out of memory message. The solution is to add the TH32CS_SNAPNOHEAPS flag to the CreateToolhelp32Snapshot() call:

C#
CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS | TH32CS_SNAPNOHEAPS, 0)

History

  • 30 May 2009 - Article submitted.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionThread List too? Pin
LiamD10-Sep-09 2:47
LiamD10-Sep-09 2:47 
GeneralThanks! Pin
Scalee26-Aug-09 13:09
Scalee26-Aug-09 13:09 
Generalerror CS0029: Cannot implicitly convert type 'Terranova.API.ProcessInfo[]' to 'SmartCSD.Form1.ProcessInfo[]' Pin
nohear_t8-Jul-09 7:44
nohear_t8-Jul-09 7:44 
AnswerRe: error CS0029: Cannot implicitly convert type 'Terranova.API.ProcessInfo[]' to 'SmartCSD.Form1.ProcessInfo[]' Pin
Frank Th. van de Ven8-Jul-09 12:44
Frank Th. van de Ven8-Jul-09 12:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.