KillProcess by Win32 API
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How can I kill a running process with the Win32 api ? I know that I have to use a Process ID, but how can I resolve this one ? Thanks for each response.
You can do this through the .NET Framework, there is a
Kill
method defined in theProcess
class. Check into here: Process.Kill[^]. - Nick Parker
My Blog | My Articles