This commit is contained in:
bol-van
2025-12-14 18:52:10 +03:00
commit d1f72b1edf
506 changed files with 28858 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
@echo off
if "%1%" == "del" (
echo DELETE WINDIVERT DRIVER
sc delete windivert
sc stop windivert
goto :end
)
sc qc windivert
if errorlevel 1 goto :end
echo.
choice /C YN /M "Do you want to stop and delete windivert"
if ERRORLEVEL 2 goto :eof
"%~dp0elevator" %0 del
goto :eof
:end
pause