WindowsLies / BlockWindows

Stop Windows 10 Nagging and Spying. Works with Win7-10
639 stars 109 forks source link

Adds a clever check for administrative privleges. #4

Closed ilag11111 closed 8 years ago

ilag11111 commented 8 years ago

Source: Ben Hooper. http://stackoverflow.com/questions/4051883/batch-script-how-to-check-for-admin-rights

This has not been tested on Windows 10. I can confirm it works on Windows 8, and the original poster confirms it works on Windows 7.

pke commented 8 years ago

Or getting the permission in the batch file itself like this:

:: BatchGotAdmin
:-------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
    echo Requesting administrative privileges...
    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    set params = %*:"=""
    echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    del "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    pushd "%CD%"
    CD /D "%~dp0"
:--------------------------------------

Works on every Windows with UAC

pke commented 8 years ago

Just curious, the reason for close?