13 lines
316 B
Batchfile
13 lines
316 B
Batchfile
@echo off
|
|
REM OmniOil Edge Agent - Service Uninstaller
|
|
REM Este script se ejecuta durante la desinstalacion del MSI con privilegios SYSTEM
|
|
|
|
set SERVICE_NAME=OmniOilEdgeAgent
|
|
|
|
REM Detener y eliminar el servicio
|
|
sc stop %SERVICE_NAME% >nul 2>&1
|
|
timeout /t 3 /nobreak >nul
|
|
sc delete %SERVICE_NAME% >nul 2>&1
|
|
|
|
exit /b 0
|