for /f "tokens=5" %%a in ('netstat /ano ^| findstr 8088') do taskkill /F /pid %%a//for循环,提取第5个字段(从命令的结果中)赋予到变量a,并执行杀进程调用变量apause