12 lines
291 B
Batchfile
12 lines
291 B
Batchfile
@echo off
|
|
title Detener MarineMaintenance
|
|
echo Deteniendo MarineMaintenance (puerto 5500)...
|
|
|
|
for /f "tokens=5" %%a in ('netstat -aon ^| findstr ":5500 " ^| findstr "LISTENING"') do (
|
|
echo Terminando proceso PID %%a...
|
|
taskkill /F /PID %%a >nul 2>&1
|
|
)
|
|
|
|
echo Listo.
|
|
timeout /t 2 >nul
|