Skip to content
Follow
Windows

How to Open Windows Terminal as Admin Automatically

Richard
Written by
Richard
Mar 12, 2023 Updated Jul 14, 2026 3 min read
How to Add Music Folders in Windows Media Player
How to Add Music Folders in Windows Media Player

Opening Windows Terminal automatically as administrator lets you run commands that need special permission without having to click extra steps each time. Windows Terminal is a modern command-line app that brings together Command Prompt, PowerShell, and Windows Subsystem for Linux (WSL) in one place. It’s available for Windows 10 version 1903 and newer, and Windows 11.

Manually running Terminal as admin means right-clicking its icon and choosing “Run as administrator.” This new setup lets you skip that every time. When you start Terminal this way, you’ll still see the User Account Control (UAC) screen to confirm, but the program will then open with the administrator rights you need.

⚡ Quick Answer

Open Windows Terminal, go to Settings, select a profile, and toggle “Run this profile as Administrator” to On. Save the changes. This will prompt a User Account Control (UAC) confirmation each time you launch that profile.

Method 1Use the Settings Menu

Opening Windows Terminal as admin is possible using the **Settings** menu to configure specific profiles, like PowerShell, to always start with administrator rights. This setting ensures your chosen command-line tools run with the permissions they need.

  1. Open Windows Terminal.
  2. Click the down arrow in the top bar and select Settings.
  3. ⚠️ ADMIN REQUIRED: In the sidebar, select the specific profile (e.g., PowerShell or Command Prompt) or Defaults to apply it to all.
  4. Toggle the Run this profile as Administrator switch to On.
  5. Click Save.
Open Windows Terminal app in Windows 11
open the Terminal app in Windows
Windows Terminal Settings button updated
Windows Terminal Settings button updated
Run Windows Terminal as administrator in Windows 11
Run the Terminal window as administrator in Windows

Method 2Edit the JSON Settings File

Editing the Windows Terminal JSON settings file (a configuration file written in JSON format) offers more control to open it as admin, letting you set specific profiles to always run with administrator privileges. This method provides a deeper level of customization for how your Terminal profiles launch.

  1. Open Settings in Windows Terminal.
  2. Click Open JSON file at the bottom left.
  3. Locate the "profiles" or "defaults" section.
  4. Add the line "elevate": true, to the desired profile block.
Windows Terminal open json file
Windows Terminal open json file
Windows Terminal app profile settings section
Terminal app profile section
💻Code
"defaults": 
{
    "elevate": true
},

Creating a Desktop Shortcut for Admin Access

Creating a desktop shortcut is a quick way to open Windows Terminal as admin every time, giving you a dedicated icon that launches Terminal with the necessary permissions. This shortcut allows you to launch Terminal directly with administrator rights without needing to go through the usual steps.

  1. Right-click on your desktop and select New > Shortcut.
  2. Type wt.exe in the location box.
  3. Click Next and name the shortcut.
  4. Right-click the new shortcut and select Properties.
  5. Click the Advanced button.
  6. Check the box Run as administrator and click OK.

Command-Line Execution and wt.exe

Windows Terminal can be launched using specific commands called arguments. For instance, to force an elevated window via the Run dialog (Win+R), type wt.exe -w 0 nt --elevated. This is useful for scripts or quick access.

Summary

You can open Windows Terminal as admin by toggling the setting in the graphical interface or by adding "elevate": true to your JSON configuration. For custom needs, use a desktop shortcut with elevated properties enabled. For more advanced configuration, refer to the official Microsoft documentation.

Can I mix admin and non-admin tabs in the same window?

No, Windows Terminal currently requires a new window for elevated sessions. Because elevation changes the security context of the process, you cannot mix standard and administrator tabs within a single window instance. Each elevated tab will spawn its own separate, high-privilege window process.

Why does Ctrl+Shift+Enter not work for Windows Terminal?

The Ctrl+Shift+Enter shortcut is a standard Windows feature for launching apps from the Start menu. It does not work inside the Terminal application itself to elevate a new tab. You must configure the profile settings or use the command line to trigger elevation.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Reset Windows Terminal to Default Settings in Windows 11
Windows How to Reset Windows Terminal to Default Settings in Windows 11
How to Open Windows Terminal at Startup in Windows 11
Windows How to Open Windows Terminal at Startup in Windows 11
How to Run Windows Terminal in the Background
Windows How to Run Windows Terminal in the Background
How to Turn On or Off Always On Top for Windows Terminal in Windows 11
Windows How to Turn On or Off Always On Top for Windows Terminal in Windows 11

43 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *