bat 搜索进程名并kill

Posted xzf-o-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bat 搜索进程名并kill相关的知识,希望对你有一定的参考价值。

@echo off

set/p "target=进程名(默认nginx): "
if not defined target (
set "target=nginx"
)
set "list=tasklist /fi "imagename eq %target%.exe""
%list%

set/p "yn=是否继续Y/N(默认Y): "
set "Yy=Y y"
if not defined yn (
set "yn=Y"
)
for %%a in (%Yy%) DO (
if "%%a"=="%yn%" (
for /f "tokens=2 " %%y in (‘%list% /nh‘) do (
REM echo %%y
taskkill /F /PID %%y
)
)
)

set target=
set yn=
set Yy=
set list=
pause

以上是关于bat 搜索进程名并kill的主要内容,如果未能解决你的问题,请参考以下文章

Python启动Windows cmd(.bat)命令行并kill进程

快速杀死占用8080端口进程的批处理(kill-8080.bat)

批量kill 进程

python监听windows上w3wp进程,如果cpu>=95%则自动kill掉

kill 指定端口的进程

如何杀掉Oracle中的会话