How To Run Apps In Admin Mode From The Run Box On Windows 10
There’s more than one way to run programs as administrator on Windows 10. You can run an EXE file directly, use a shortcut to the EXE, open it from a pinned tile on the Start menu, or launch it from the apps list. Another option is the Run box.
If you want to open an app with administrative rights, the easiest method is via the EXE or a shortcut to the EXE. You can right-click it and select the ‘Run as administrator’ option. The same works for apps you find via Windows Search.
That said, if these options aren’t viable — for example, if a feature isn’t working or responding — the Run box is always a safe bet. By default, when you open an app via the Run box, it opens with normal user rights. To open apps in admin mode from the Run box, you need to modify the keyboard shortcut you use to launch it.
Other Ways to Run Programs as Administrator
The Run box is just one path to elevation. Here are the most common everyday methods, each taking only a few steps.
File Explorer or Desktop Shortcut
- Open File Explorer and navigate to the app’s EXE file, or locate its shortcut on the desktop.
- Right-click the file or shortcut.
- Select Run as administrator from the context menu.
- Confirm the UAC prompt that appears.
Start Menu App List or Pinned Tile
- Open the Start menu and locate the app in the All Apps list or among your pinned items.
- Right-click the app.
- Select More, then choose Run as administrator from the submenu.
- Confirm the UAC prompt. Note that this option is available for classic desktop apps but may not appear for all Microsoft Store apps.
Windows Search
- Click the Search bar on the taskbar (or press Win + S) and type the name of the app.
- When the app appears in the results, either click Run as administrator in the right-hand panel, or right-click the result and select Run as administrator.
- Confirm the UAC prompt.
Pinned Taskbar Icon
- Right-click the app’s icon on the taskbar. A jump list will appear.
- For many classic desktop apps, you can right-click the app’s name within that jump list and choose Run as administrator. Not every pinned app exposes this option directly — if you don’t see it, use the Windows Search or File Explorer method instead.
- The UAC prompt will still appear regardless of how you initiate the elevation.
How to Run Programs as Administrator From The Run Box
Open the Run box with the Win + R keyboard shortcut. Enter the name of the app you want to open in admin mode. Instead of tapping the Enter key, tap Ctrl + Shift + Enter to run the app in admin mode.
You will get an on-screen prompt asking if you want to allow the app to modify your system. This prompt appears because you’re opening the app in admin mode, not because you’re using the Run box specifically. You will see this prompt regardless of the nature of the app — whether you’re opening the Windows Registry or launching your browser.
It’s worth noting that the Run box method works reliably for classic desktop apps and built-in Windows tools that have a known executable name or a registered Run command — for example, regedit, cmd, notepad, or msconfig. It is not a universal method for every app on your system. Microsoft Store (UWP) apps and any application that does not have a direct, standalone executable path will generally not respond to the Win+R method in the same way. For a full list of common Windows executable names, Microsoft’s official documentation is a reliable reference.
It’s worth noting that admin mode isn’t always necessary. Unless whatever you’re doing explicitly requires elevated privileges, normal mode is sufficient. For example, if you want to open Chrome to browse the internet, check email, or watch videos on YouTube, you don’t need to run the app in admin mode. Normal user privileges will do just fine.
When You Need to Run Programs as Administrator
Some tasks genuinely require elevated permissions. Installing software, modifying system files, editing the Windows Registry, or running certain diagnostic tools are all common scenarios where you’ll need to run programs as administrator. If an app throws an “Access Denied” error or fails to complete an action, trying again in admin mode is often the fix.
Here’s something that trips up a lot of users: you can be signed into an Administrator account and still hit permission errors. This happens because of a Windows feature called User Account Control (UAC). Even when your account has administrator privileges, Windows runs most apps with standard user rights by default. When an app needs to make system-level changes, UAC steps in and asks you to confirm — this is called elevation. Think of it as a deliberate speed bump that prevents apps from quietly making changes without your knowledge.
The experience differs depending on your account type. If you’re on an administrator-capable account, UAC shows a simple Yes/No dialog asking whether you want to allow the app to make changes. If you’re on a standard user account, UAC goes a step further and prompts you to enter the username and password of an administrator account before proceeding. Neither account type automatically runs every app with full elevated rights — that decision is made app by app, action by action.
It’s also worth clarifying that lowering your UAC notification level does not mean apps will automatically run with elevated permissions. Reducing UAC sensitivity only changes when and how often you see the prompt — it does not silently grant admin rights to everything that runs on your system.
Keep in mind that running apps with administrator rights gives them broader access to your system. Only use admin mode when it’s actually needed, and be cautious about which apps you grant these elevated privileges to. Stick to trusted software from known developers.
We should also mention that unless you’re running Windows with the admin account, simply accepting the on-screen prompt isn’t all you will have to do. If you’re running a standard user account, you will need to enter the administrator’s username and password in order to actually run the app in admin mode. This is an important security feature built into Windows 10 to prevent unauthorized changes to your system.
If you frequently need to run a specific app with elevated rights, consider creating a dedicated shortcut and setting it to always run as administrator through its Properties menu. Right-click the shortcut, select Properties, go to the Shortcut tab, click Advanced, and check the Run as administrator box. This saves time compared to using the Run box every time.
How to Open Command Prompt, PowerShell, or Windows Terminal as Administrator
Many system-level tasks fail not because you lack permissions on your account, but because the command-line tool itself was not opened with elevation. If you see an error like “Access is denied” or “You must be an administrator” inside Command Prompt or PowerShell, the fix is to relaunch the terminal as administrator — not just to run a single command differently.
On Windows 11
- Right-click the Start button (or press Win + X) to open the Power User menu.
- Select Terminal (Admin) or Windows PowerShell (Admin), depending on your system configuration.
- Confirm the UAC prompt. The terminal title bar will not display any special indicator, so it’s a good habit to verify you launched it with elevation before running sensitive commands.
On Windows 10
- Click the Search bar and type Command Prompt, PowerShell, or Windows Terminal.
- When the result appears, click Run as administrator in the right-hand panel, or right-click the result and choose Run as administrator.
- Confirm the UAC prompt. You now have an elevated terminal session.
Tasks That Specifically Require an Elevated Terminal
Some of the most common reasons users end up needing an elevated command prompt include:
- sfc /scannow — the System File Checker scans for and repairs corrupted Windows system files. It will fail or produce incomplete results if run in a standard (non-elevated) terminal.
- DISM /Online /Cleanup-Image /RestoreHealth — this tool repairs the Windows image itself and requires full administrator privileges to run at all.
- Editing files in protected directories such as C:\Windows\System32 or making changes to network adapter settings via the command line.
Advanced: Running a Program as a Different User from the Command Line
If you need to launch a program under a completely different Windows user account — not just with elevated rights on your own account — Windows includes a built-in command called runas. For example, runas /user:ComputerName\AdminAccount notepad.exe will launch Notepad under the credentials of a specified account. This is different from simple elevation: runas switches the user context entirely, while the methods above elevate your current user session. Unless you specifically need to impersonate another account, the right-click or search methods described earlier are the right tool for the job.