Hi,
indem Du Dir mittels
Delphi-Quellcode:
...
hProcSnap := CreateToolHelp32SnapShot(TH32CS_SNAPALL, 0);
if hProcSnap = INVALID_HANDLE_VALUE then exit;
pe32.dwSize := SizeOf(pe32);
if Process32First(hProcSnap, pe32) = true then
begin
...
while (Process32Next(hProcSnap, pe32) = true) do
...
alle Prozesse auflisten lässt. In pe32.th32ProcessID steht dann die PID.
Viele Grüße
peanut.