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