mirror of
https://github.com/Flowseal/zapret-discord-youtube.git
synced 2025-04-10 15:25:39 -07:00
25 lines
428 B
Batchfile
25 lines
428 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"
|
|
|
|
pause
|
|
endlocal
|