Celeb Glow
general | March 15, 2026

How to run cmd with Admin privileges using command line

Is there a way to run/start cmd as administrator through the command line or a batch file programming in Windows 8?

I want to create a batch file which has administrative privileges without any prompt to the user.

2

4 Answers

runas /profile /user:administrator “Driver:\folder\program”

For example, the administrator account is “AAA” and you want to run BBB.exe of C:\programs, you should follow these steps:

  1. Press Win key & R
  2. Input “CMD” in open box and click “OK”
  3. Input: runas /profile /user:AAA “C:\programs\BBB.exe” and press “Enter”
  4. Input the password of administrator AAA
  5. Press “Enter”

Hope it works.

You can use runas.exe /savecred /user:administrator cmdor refer this link

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" echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /B
:gotAdmin if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" 
1

You can download already created portable and clean (generated in the Windows XP) shortcut files set:

Or even generate your own:

Usage example:

cmd_admin.lnk /C ...

Each lnk file just a link to the cmd.exe, so you can pass here all the cmd.exe command line options.

Pros:

  • You don't need a localized version of Administrator account name like for the runas method.

Cons:

  • You start elevated only the cmd.exe process. To start any other process you have to either run it from the cmd.exe script, or create another standalone shortcut with the Run as Administrator flag raised.
  • Run from shortcut file (.lnk) in the Windows XP (but not in the Windows 7) brings truncated command line down to ~260 characters.
  • Run from shortcut file (.lnk) loads console windows parameters (font, windows size, buffer size, etc) from the shortcut at first and from the registry (HKCU\Console) at second. If try to change and save parameters, then it will be saved ONLY into the shortcut, which brings the shortcut file overwrite.
4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy