【发布时间】:2017-07-17 15:27:48
【问题描述】:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 3808
如何用pid杀死这个进程?
我的命令:
for /f "delims=, tokens=5" %%a in ('netstat -ano | findstr 0.0.0.0:8080') do ( taskkill /f /pid %%a )
【问题讨论】:
标签: batch-file netstat taskkill