Add background launcher scripts

This commit is contained in:
2026-05-05 02:34:49 -04:00
commit fe61f1f48e
4 changed files with 42 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
@echo off
title Detener Fleet Management
echo Deteniendo Fleet Management (puerto 5010)...
for /f "tokens=5" %%a in ('netstat -aon ^| findstr ":5010 " ^| findstr "LISTENING"') do (
echo Terminando proceso PID %%a...
taskkill /F /PID %%a >nul 2>&1
)
echo Listo.
timeout /t 2 >nul