Add background launcher scripts
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user