Add background launcher scripts

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