我正在编写一个简单的程序,它将关闭用户输入的进程。 例如,我将编写Chrome,资源管理器,然后该程序将关闭所选的进程。 我唯一的问题是我如何实际关闭所选择的进程,也就是p。 代码:
@echo off
@echo Thank you for using my program.
set /p id=Enter Process Name With .exe in the end:
taskkill p /im explorer.exe
timeout 5
%0
答案 0 :(得分:1)
您可能想要使用此行:
taskkill /p /im %id%
或强制关闭进程的那个,但它可能会破坏数据,具体取决于哪个程序被强制关闭。
taskkill /p /f /im %id%