List of processes (Save My Day #1)
-
Hi, I (desperately) need a list of running processes (ID orHandle, and Module name), on Win 9x (more important) and NT/W2K. I know I know this gets asked often, but couldn't find any on CP.. Thanks a lot! Peter
I think there is a sample in the platform sdk, PViewer or something like that. So a search on MSDN for Process Viewer. Michael :-)
-
Hi, I (desperately) need a list of running processes (ID orHandle, and Module name), on Win 9x (more important) and NT/W2K. I know I know this gets asked often, but couldn't find any on CP.. Thanks a lot! Peter
http://www.codeproject.com/threads/interprocesssync.asp -------------------------------------------------- If my messages appear curt, I apologize. I try to be brief to save your time as well as mine. --------------------------------------------------
-
Hi, I (desperately) need a list of running processes (ID orHandle, and Module name), on Win 9x (more important) and NT/W2K. I know I know this gets asked often, but couldn't find any on CP.. Thanks a lot! Peter
MSDN Search: HOWTO: Enumerate Applications in Win32 Q175030 The information in this article applies to: Microsoft Win32 Application Programming Interface (API), used with: the operating system: Microsoft Windows NT, version 4.0 Microsoft Windows 95 the operating system: Microsoft Windows 2000 Definitely one of the best starting points to do it.
-
Hi, I (desperately) need a list of running processes (ID orHandle, and Module name), on Win 9x (more important) and NT/W2K. I know I know this gets asked often, but couldn't find any on CP.. Thanks a lot! Peter
-
Use CreateToolhelp32Snapshot, Process32First and Process32Next defined in tlhelp32.h. It works on Win9x as well as NT (PSAPI gives you more control, but only works on NT). /moliate
Actually, ToolHelp32 funtions are *not* available on NT4, according to MSDN. W2K supports them, however. Tomasz Sowinski -- http://www.shooltz.com
-
Actually, ToolHelp32 funtions are *not* available on NT4, according to MSDN. W2K supports them, however. Tomasz Sowinski -- http://www.shooltz.com
-
Hi, I (desperately) need a list of running processes (ID orHandle, and Module name), on Win 9x (more important) and NT/W2K. I know I know this gets asked often, but couldn't find any on CP.. Thanks a lot! Peter