이름으로 프로세스 핸들을 검색하려면 CreateToolhelp32Snapshot 기능을 활용할 수 있습니다. 시스템 프로세스의 스냅샷을 얻으려면 이 함수는 프로세스 이름을 포함하여 실행 중인 프로세스에 대한 정보에 대한 액세스를 제공합니다.
다음 코드 조각은 CreateToolhelp32Snapshot 및 Process32Next를 사용하여 프로세스를 검색하는 방법을 보여줍니다. 이름을 지정하고 핸들을 검색합니다.
#include <cstdio> #include <windows.h> #include <tlhelp32.h> int main(int, char *[]) { PROCESSENTRY32 entry; entry.dwSize = sizeof(PROCESSENTRY32); HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); if (Process32First(snapshot, &entry) == TRUE) { while (Process32Next(snapshot, &entry) == TRUE) { if (stricmp(entry.szExeFile, "target.exe") == 0) { HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, entry.th32ProcessID); // Do stuff with the process... CloseHandle(hProcess); } } } CloseHandle(snapshot); return 0; }
필요한 경우 PROCESS_ALL_ACCESS 액세스를 위해 SE_DEBUG_NAME 권한을 일시적으로 활성화해야 할 수도 있습니다. 그렇게 하는 방법은 다음과 같습니다.
#include <cstdio> #include <windows.h> #include <tlhelp32.h> void EnableDebugPriv() { HANDLE hToken; LUID luid; TOKEN_PRIVILEGES tkp; OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken); LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &luid); tkp.PrivilegeCount = 1; tkp.Privileges[0].Luid = luid; tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; AdjustTokenPrivileges(hToken, false, &tkp, sizeof(tkp), NULL, NULL); CloseHandle(hToken); } int main(int, char *[]) { EnableDebugPriv(); // ... (Code from previous example)... return 0; }
위 내용은 C에서 이름으로 프로세스 핸들을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!