In C++ is there a way to unconditionally kill a process?
No matter what state this process is in.
I know about TerminateProcess, but it can still fail. What if you don't want it to fail.
Like when you kill a process in Task Manager, it dies; no matter what. That's the kind of killing I'm looking for.