批量终止名称中没有 window 和 space 的任务

Kill a Task with no window and space inside the Name – in Batch

我想通过 Batch 终止一个进程。问题是,它现在在后台有 window、运行 并且名称中有一个 space,而且它没有服务。

我已经尝试了以下

taskkill /F /IM Battle.net%20Helper.exe

taskkill /F /IM Battle.net% %Helper.exe

taskkill /F /IM Battle.net Helper.exe

还有更多奇怪的事情

在批处理文件中你应该这样写:

@echo off
taskkill /F /IM "Battle.net Helper.exe"
pause