You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
837 B
31 lines
837 B
5 years ago
|
@set @_cmd=1 /*
|
||
|
@echo off
|
||
|
setlocal EnableExtensions
|
||
|
title Yggdrasil
|
||
|
|
||
|
whoami /groups | findstr "S-1-16-12288" >nul && goto :admin
|
||
|
if "%~1"=="RunAsAdmin" goto :error
|
||
|
|
||
|
echo Requesting privileges elevation for managing the dnscrypt-proxy service . . .
|
||
|
cscript /nologo /e:javascript "%~f0" || goto :error
|
||
|
exit /b
|
||
|
|
||
|
:error
|
||
|
echo.
|
||
|
echo Error: Administrator privileges elevation failed,
|
||
|
echo please manually run this script as administrator.
|
||
|
echo.
|
||
|
goto :end
|
||
|
|
||
|
:admin
|
||
5 years ago
|
sc start "Yggdrasil"
|
||
5 years ago
|
|
||
|
:end
|
||
|
set /p =Press [Enter] to exit . . .
|
||
|
exit /b */
|
||
|
|
||
|
// JScript, restart batch script as administrator
|
||
|
var objShell = WScript.CreateObject('Shell.Application');
|
||
|
var ComSpec = WScript.CreateObject('WScript.Shell').ExpandEnvironmentStrings('%ComSpec%');
|
||
|
objShell.ShellExecute(ComSpec, '/c ""' + WScript.ScriptFullName + '" RunAsAdmin"', '', 'runas', 1);
|