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.
似乎每当我在 Windows 8 中打开程序时,进程名称都是WWAHost.exe
WWAHost.exe
我希望能够做类似的事情TASKKILL /F /IM notepad.exe并按名称终止特定进程
TASKKILL /F /IM notepad.exe
如果我杀WWAHost.exe了,那么所有打开的程序都会死。
有任何想法吗?
您可以使用开关终止进程及其所有子进程(即由它启动的所有进程) :/t
/t
taskkill /f /t /im wwahost.exe
请参阅taskkill ( ss64 ) 和tskill ( ss64 ) 系统实用程序的文档。