mirror of
https://github.com/bol-van/zapret-win-bundle.git
synced 2026-09-22 22:58:12 +03:00
22 lines
293 B
Batchfile
22 lines
293 B
Batchfile
@echo off
|
|
|
|
if "%1%" == "del" (
|
|
echo DELETE MONKEY DRIVER
|
|
sc stop monkey
|
|
sc delete monkey
|
|
goto :end
|
|
)
|
|
|
|
sc qc monkey
|
|
if errorlevel 1 goto :end
|
|
|
|
echo.
|
|
choice /C YN /M "Do you want to stop and delete monkey"
|
|
if ERRORLEVEL 2 goto :eof
|
|
|
|
"%~dp0..\tools\elevator" "%~f0" del
|
|
goto :eof
|
|
|
|
:end
|
|
pause
|