mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-03 21:27:37 +03:00
Windows command scripts cleanup/ via @B00ze64
This commit is contained in:
parent
3dbdf54c1f
commit
db837204da
3 changed files with 39 additions and 33 deletions
|
@ -1,23 +1,21 @@
|
|||
@ECHO OFF
|
||||
@ECHO OFF & SETLOCAL ENABLEEXTENSIONS
|
||||
|
||||
SFC 2>&1 | FIND /i "/SCANNOW" >NUL
|
||||
IF %ERRORLEVEL% NEQ 0 GOTO ELEVATE
|
||||
GOTO ADMINTASKS
|
||||
CD /d %~dp0
|
||||
SFC 2>&1 | FIND /i "/SCANNOW" >NUL:
|
||||
IF ERRORLEVEL 1 GOTO :ELEVATE
|
||||
GOTO :ADMINTASKS
|
||||
|
||||
:ELEVATE
|
||||
|
||||
ECHO Elevated privileges are temporarily required, just to register or remove the dnscrypt-proxy service
|
||||
CD /d %~dp0
|
||||
MSHTA "javascript: var shell = new ActiveXObject('shell.application'); shell.ShellExecute('%~nx0', '', '', 'runas', 1); close();"
|
||||
EXIT
|
||||
|
||||
:ADMINTASKS
|
||||
|
||||
CD /d %~dp0
|
||||
dnscrypt-proxy.exe -service stop
|
||||
dnscrypt-proxy.exe -service uninstall
|
||||
|
||||
CMD.EXE /c ".\dnscrypt-proxy.exe -service stop"
|
||||
CMD.EXE /c ".\dnscrypt-proxy.exe -service uninstall"
|
||||
|
||||
ECHO ""
|
||||
ECHO.
|
||||
SET /P _=Thank you for using dnscrypt-proxy! Hit [RETURN] to finish
|
||||
|
||||
EXIT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue