Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过编程方式杀死audiodg.exe进程?
最好的编程方式是cpp。
调用TerminateProcess()。为此,您需要一个进程句柄,而这又需要一个进程 ID (PID),可以通过此方法从进程名称中检索该 ID 。TerminateProcess() 需要 PROCESS_TERMINATE (0x0001) 作为访问权限。