mirror of
https://github.com/Flowseal/zapret-discord-youtube.git
synced 2025-04-14 17:21:26 -07:00
27 lines
461 B
Batchfile
27 lines
461 B
Batchfile
@echo off
|
|
chcp 65001 > nul
|
|
:: 65001 - UTF-8
|
|
|
|
if "%1"=="admin" (
|
|
echo Started with admin rights
|
|
) else (
|
|
echo Requesting admin rights...
|
|
powershell -Command "Start-Process 'cmd.exe' -ArgumentList '/k \"\"%~f0\" admin\"' -Verb RunAs"
|
|
exit /b
|
|
)
|
|
|
|
set SRVCNAME=zapret
|
|
|
|
net stop %SRVCNAME%
|
|
sc delete %SRVCNAME%
|
|
|
|
net stop "WinDivert"
|
|
sc delete "WinDivert"
|
|
net stop "WinDivert14"
|
|
sc delete "WinDivert14"
|
|
|
|
echo Services have been stopped
|
|
|
|
pause
|
|
endlocal
|