9 lines
402 B
Batchfile
9 lines
402 B
Batchfile
@echo off
|
|
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 已停止
|
|
pause
|