Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Tsk killer

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
13.05.2004, 15:00 Uhr
ripper



Hat jemand eine Source für einen Taskkiller ???
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
13.05.2004, 15:06 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft...
(Operator)


meinst du sowas?


C++:
    DWORD dw;
    HANDLE hSysSnapshot = NULL;
    HANDLE h_abc;
    PROCESSENTRY32 proc;

    proc.dwSize = sizeof(proc);
    hSysSnapshot = CreateToolhelp32Snapshot ( TH32CS_SNAPPROCESS, 0 );
    Process32First(hSysSnapshot,&proc);
    proc.dwSize = sizeof(proc);

    do{
        if(!strcmp(proc.szExeFile,"tralala.exe")){
            h_abc=OpenProcess(PROCESS_ALL_ACCESS, TRUE, proc.th32ProcessID);
            GetExitCodeProcess(h_abc,&dw);
            TerminateProcess(h_abc,dw);
        }
    }while(Process32Next(hSysSnapshot,&proc));



--
...fleißig wie zwei Weißbrote
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
13.05.2004, 16:20 Uhr
ripper



Ja genau , Danke
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: