2026-05-20 10:17:05 +08:00
|
|
|
@echo off
|
2026-05-22 17:53:59 +08:00
|
|
|
chcp 65001 >nul
|
|
|
|
|
echo [清理] 停止所有 agent_jrxml 服务...
|
|
|
|
|
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":8000.*LISTENING"') do taskkill /F /PID %%a 2>nul
|
|
|
|
|
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":8001.*LISTENING"') do taskkill /F /PID %%a 2>nul
|
|
|
|
|
for /f "tokens=5" %%a in ('netstat -ano ^| findstr ":5173.*LISTENING"') do taskkill /F /PID %%a 2>nul
|
|
|
|
|
echo 已停止
|
2026-05-20 10:17:05 +08:00
|
|
|
pause
|