# 查找占用端口8193的进程PID
netstat -ano | findstr :8193

# 根据PID终止进程(替换<PID>为实际进程ID)
taskkill /PID <PID> /F