Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C++
Article

How to get handle to any running process by its name

Rate me:
Please Sign up or sign in to vote.
3.57/5 (30 votes)
24 Aug 20041 min read 427.4K   8.6K   65   42
Get handle to any running process (by its name) by using performance data

Introduction

There are several ways to get the process id (and its handle afterwards) for any running process. One of them is by using functions that are available in PSAPI.DLL, which is distributed in the Microsoft® Platform Software Development Kit (SDK).The same information is generally available through the performance data.

One of the performance objects is 'Process' whose index is 230. The 'Process' object has several counters, one of them is 'ID Process' whose index is 784. A function called GetProcessID runs through the performance objects and counters and retrieves the process id for the required process name.

The following sample shows you how to retrieve the process handle by performance data.

The Sample

C++
std::vector<DWORD> SetOfPID;
GetProcessID("Rundll32",SetOfPID); 
     // get all process id's of Rundll32

if (SetOfPID.empty())   // Process is not running
{
    printf("Process is not running\n");
}
else    // Process is running
{
    for (int i=0;i < SetOfPID.size(); i++)
    {
        printf("Process ID is %d\n", SetOfPID[i]);
        HANDLE hProcess = OpenProcess(
             PROCESS_ALL_ACCESS,FALSE,SetOfPID[i]);
        // some code...
        CloseHandle(hProcess);
    }
}

More of my articles using performance counters

Updates

My first version returned only the first running instance. Since the process name is not unique I changed my code so it returns set of process id's.

  • 13.1.03 - I release the allocation of PERF_DATA_BLOCK at the end of the function
  • 19.3.03 - I add call to RegCloseKey(HKEY_PERFORMANCE_DATA) at the end of the function
  • 15.6.03 - Using none case-sensitive comparison for checking process existance.
  • 24.5.04 - Changed the first argument to RegQueryValueEx from "Global" (which retrieves the whole counters) to a string that specifies the specific process object and process-id counter. This change enables fast query.
  • 25.8.04 - Source and demo updated

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionhelp Pin
katekserv19-Sep-11 3:26
katekserv19-Sep-11 3:26 
QuestionHow to get the PID of an out-of-proc server Pin
razvandynalog27-Jan-09 10:20
razvandynalog27-Jan-09 10:20 
GeneralGDI object Pin
jinijinu28-Sep-08 23:29
jinijinu28-Sep-08 23:29 
GeneralHandle Count Pin
jinijinu28-Sep-08 23:26
jinijinu28-Sep-08 23:26 
QuestionHow to get the exe name which is running foreground Pin
CYRIL K THANKACHAN23-Oct-06 2:30
CYRIL K THANKACHAN23-Oct-06 2:30 
AnswerRe: How to get the exe name which is running foreground Pin
Programm3r7-Mar-07 23:10
Programm3r7-Mar-07 23:10 
GeneralThx for the update, re: query by processID Pin
Dalroi25-Sep-06 11:26
Dalroi25-Sep-06 11:26 
QuestionHow to get Handle of the specified process and kill the process??? Pin
Supriya Tonape16-Aug-05 1:22
Supriya Tonape16-Aug-05 1:22 
AnswerRe: How to get Handle of the specified process and kill the process??? Pin
Ameen Ibrahim3-May-06 21:54
Ameen Ibrahim3-May-06 21:54 
GeneralRe: How to get Handle of the specified process and kill the process??? Pin
vish_coder28-May-06 22:58
vish_coder28-May-06 22:58 
GeneralRe: How to get Handle of the specified process and kill the process??? Pin
vish_coder28-May-06 22:58
vish_coder28-May-06 22:58 
GeneralPlz Help Pin
abapaba30-Apr-05 11:02
abapaba30-Apr-05 11:02 
QuestionHOw to get the process ID of application which is in foreground Pin
sonawane ajay24-Oct-04 23:10
sonawane ajay24-Oct-04 23:10 
AnswerRe: HOw to get the process ID of application which is in foreground Pin
Dudi Avramov30-Oct-04 22:38
Dudi Avramov30-Oct-04 22:38 
QuestionWhat about RegCloseKey????? Pin
RochDrouin23-Aug-04 8:14
RochDrouin23-Aug-04 8:14 
AnswerRe: What about RegCloseKey????? Pin
RochDrouin25-Aug-04 7:07
RochDrouin25-Aug-04 7:07 
GeneralRe: What about RegCloseKey????? Pin
Dudi Avramov25-Aug-04 21:27
Dudi Avramov25-Aug-04 21:27 
QuestionHow can I find the owner name &amp; pid of a process Pin
KUNTAL MONDAL19-Nov-03 12:56
KUNTAL MONDAL19-Nov-03 12:56 
AnswerRe: How can I find the owner name &amp; pid of a process Pin
Dudi Avramov23-Nov-03 22:35
Dudi Avramov23-Nov-03 22:35 
QuestionThread safe? Pin
Riyadh Tanveer9-Jul-03 23:29
Riyadh Tanveer9-Jul-03 23:29 
AnswerRe: Thread safe? Pin
Riyadh Tanveer10-Jul-03 0:07
Riyadh Tanveer10-Jul-03 0:07 
QuestionWhy this way better than WMI ? Pin
Vladimir Afanasyev16-Jun-03 21:00
Vladimir Afanasyev16-Jun-03 21:00 
GeneralSpeed question Pin
Arnaud Brejeon12-Jun-03 15:03
Arnaud Brejeon12-Jun-03 15:03 
GeneralRe: Speed question Pin
Dudi Avramov14-Jun-03 21:49
Dudi Avramov14-Jun-03 21:49 
GeneralWhat's Wrong With My OS Pin
fz_zhou15-May-03 3:44
fz_zhou15-May-03 3:44 
When I use NT Performance Monitor in my computer, I cann't see the performance object "Process" and "Thread"! Do you know what's wrong with my win2k system? Os is Microsoft windows 2000, version: 5.00.2195, Service Pack 3.


Every is my teacher!(From China saying )

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.