mirror of
https://github.com/Flowseal/zapret-discord-youtube.git
synced 2025-02-22 09:06:08 -08:00
22 lines
395 B
Batchfile
22 lines
395 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
:: 65001 - UTF-8
|
|
|
|
set "arg=%1"
|
|
if "%arg%" == "admin" (
|
|
echo Restarted with admin rights
|
|
) else (
|
|
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"
|