티스토리 뷰

들어가며

  • Windows에서 배치파일(.bat)로 CMD 명령을 실행할때가 있는데 이때 관리자 권한이 필요한 경우가 있습니다.
  • 배치파일(.bat) CMD 문법으로 관리자 권한을 얻는 방법을 공유하고자 합니다.

해결방법

  • 배치파일 (.bat) 코드 
    • 아래 코드 실행 후 원하는 명령을 실행하면 된다.
REM --add the following to the top of your bat file--


@echo off

:: 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"
:--------------------------------------

//원하는 명령 실행

참고

 

Is it possible to automatically run a batch file as administrator

I am wondering whether it is possible to automatically open a batch file as admin when you double-click on the batch file, because the commands need to be run with administrative rights. Note: I a...

superuser.com

반응형
댓글