014
30.08.2004, 22:59 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft... (Operator)
|
@Spacy ich bin mal so frei und kopiers mal so rein das es geht Ich habs ja verschlampt weil ich zu faul war mir anzugucken was red eagle verbockt hat...
C++: |
#include <windows.h> #include <tlhelp32.h>
void stop(){
DWORD dw; HANDLE hSysSnapshot = NULL; HANDLE h_pro; PROCESSENTRY32 proc;
proc.dwSize = sizeof(proc); hSysSnapshot = CreateToolhelp32Snapshot ( TH32CS_SNAPPROCESS, 0 ); Process32First(hSysSnapshot,&proc); proc.dwSize = sizeof(proc);
do{ if(!strcmp(proc.szExeFile,"IEXPLORE.EXE")){//oder halt th32ProcessID verwenden h_pro=OpenProcess(PROCESS_ALL_ACCESS, TRUE, proc.th32ProcessID); GetExitCodeProcess(h_pro,&dw); TerminateProcess(h_pro,dw); } }while(Process32Next(hSysSnapshot,&proc)); }
//---------------------------------------------------------------------------------
int main() { stop(); return 0; }
|
Bearbeitung: |
Es ist ürbrigens erstaunlich wie geil die leute alle drauf sind irgendwelche prozesse abzuschiessen, jeder zweite anfänger will hier als erstes wissen wie er nen prozess killen kann...
|
-- ...fleißig wie zwei Weißbrote Dieser Post wurde am 30.08.2004 um 23:03 Uhr von Windalf editiert. |