- 전체
- C/C++ 일반
- C/C++ 수학
- C/C++ 그래픽
- C/C++ 자료구조
- C/C++ 인공지능
- C/C++ 인터넷
- wxWidget
- GTK+
- UNIX or LINUX programming
- 리눅스 마스터 - 국가공인자격
- VC++/ MFC
- C#/CLI/.NET
- QT/기타UI
- Boost lib
- 오픈소스 C 분석자료
- MSA (마이크로서비스), Docker, kubernetes
- WSL(windows subsystem linux)
Check whether one specific process is running on windows with C++
// AirForce02Win32ProcessCheck01.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <windows.h> #include <tlhelp32.h> int main() { PROCESSENTRY32 pe32 = {0}; HANDLE hSnap; int iDone; int iTime = 60; bool bProcessFound; char sAppName[1024] = "cmd.exe"; char sAppPath[5120] = "d:\"; while(true) // go forever { hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0); pe32.dwSize = sizeof(PROCESSENTRY32); Process32First(hSnap,&pe32); // Can throw away, never an actual app bProcessFound = false; //init values iDone = 1; while(iDone) // go until out of Processes { iDone = Process32Next(hSnap,&pe32); if (strcmp(pe32.szExeFile,sAppName) == 0) // Did we find our process? { bProcessFound = true; iDone = 0; } } if(!bProcessFound) // if we didn't find it running... { //startProcess(sAppPath+sAppName,""); // start it printf("found!\n"); } Sleep(iTime*1000); // delay x amount of seconds. } } |
본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 8 | systemcall을 hooking 해 볼까요? | 졸리운_곰 | 2015.06.16 | 600 |
| 7 |
리눅스 화면 녹화 : Linux Screen Recoding to make Movie
| 졸리운_곰 | 2015.05.09 | 564 |
| 6 |
도커(docker) 리눅스 경량(가벼운)가상화 프로그램 기본 및 설치 사용
| 졸리운_곰 | 2015.01.28 | 967 |
| 5 | system 다른 프로그램 실행 및 대기 | 졸리운_곰 | 2014.10.27 | 756 |
| 4 |
Ubuntu Qt install (우분투 Qt 설치하기)
| 졸리운_곰 | 2014.10.09 | 590 |
| 3 | Linux Qt Creator Installation | 졸리운_곰 | 2014.09.17 | 508 |
| 2 | 파일의 존재여부 검사 [access()함수] access() 파일 존재나 접근 권한을 확인합니다. | 졸리운_곰 | 2014.03.03 | 1290 |
| 1 | linux c 파일 접근권한 정보 가져오기 | 졸리운_곰 | 2014.02.28 | 1163 |

