Files
2026-04-23 21:38:24 -04:00

8 lines
213 B
Batchfile

@echo off
echo Stopping application...
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :58461 ^| findstr LISTENING') do (
echo Killing process %%a
taskkill /F /PID %%a 2>nul
)
echo Application stopped.