Hello
Are possible close a remote
handle of another process?
Example: I'm trying with this command
Delphi-Quellcode:
hProcess : THandle ;
begin
hProcess := OpenProcess (PROCESSS_ALL_ACESS, false, RemotePID) ;
CloseHandle (RemoteHandleID) {$1C}
CloseHandle (hProcess) ;
end;
But the problem is, this works only on my process, closed the
handle only on my process and don't killed the
handle on the remote process {$1C}
Thank you!