Windows programming: Traversing all process (EXE) code (c + +)

Source: Internet
Author: User

Iterate through all processes, that is, all the process directories in Task Manager, including the name and process ID.

Back to Dictionary: Key: Process name, Value: Process ID.

Code:

* * * main.cpp * * Created on:2014.06.08 * author:spike//*vs 2012*/#include <iostre  
      
am> #include <string> #include <map> #include <windows.h> #include <TlHelp32.h>  
      
using namespace Std;  
    BOOL Traverseprocesses (std::map<std::string, int>& _nameid) {PROCESSENTRY32 pe32;  
      
    pe32.dwsize = sizeof (PE32);  
    HANDLE Hprocesssnap = createtoolhelp32snapshot (th32cs_snapprocess, 0); if (Hprocesssnap = = Invalid_handle_value) {std::cout << "createtoolhelp32snapshot error!" << std::en  
        DL;;  
    return false;  
      
    BOOL bresult =process32first (Hprocesssnap, &pe32);  
      
    int num (0);  
        while (bresult) {std::string name = Pe32.szexefile;  
      
        int id = PE32.TH32PROCESSID; Std::cout << "[<< ++num <<"]: "<<" Process Name: "<< NAme << "<<" ProcessID: "<< id<< Std::endl; _nameid.insert (std::p air<string, int> (name, id));  
    Dictionary Storage bresult = Process32Next (HPROCESSSNAP,&AMP;PE32);  
      
    } closehandle (HPROCESSSNAP);  
return true;  
      
    int main () {std::map<std::string, int> _nameid;  
    if (!traverseprocesses (_nameid)) {cout << "Start Process error!" << Endl;  
return 0; }

Output:

Author: csdn Blog spike_king

More Wonderful content: http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.