Add background launcher scripts (Iniciar.vbs, Detener.bat, Ver_Log.bat)

This commit is contained in:
2026-05-05 02:24:59 -04:00
parent 764b72a318
commit 58414331f8
5 changed files with 104 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
@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