请问这段批处理代码怎么改?目的:输入PID关闭这个程序

2024-12-21 10:46:28
推荐回答(1个)
回答1:

if %input%=="exit"goto exit else goto clear0
if /i "%input%"=="exit"goto exit else goto clear0

if %type%=="2" goto clear1
if "%type%"=="2" goto clear1

if %type%=="1" goto clear2
if "%type%"=="1" goto clear2

taskkill /f /p %input%
taskkill /pid %input% /t

另外,XP没有taskkill 吗?看到你用 ntsd