Follow
Windows

How to Open Windows Terminal as Admin Automatically

Richard
Written by
Richard
Mar 12, 2023 Updated Apr 30, 2026 3 min read
How to Open Windows Terminal as Admin Automatically

You can automatically open Windows Terminal as administrator to streamline command-line tasks that require elevated privileges.

Windows Terminal is a modern application that consolidates multiple command-line tools like Command Prompt, PowerShell, and Windows Subsystem for Linux (WSL) into a single interface. Granting administrator rights provides full system control.

Frequently performing system-level operations means you’ll often need to run Windows Terminal with elevated permissions. Setting it to launch as admin automatically eliminates the repetitive step of right-clicking and selecting “Run as administrator” for every new session.

Once you configure this setting, each time you open a new Windows Terminal tab or window, it will automatically present a User Account Control (UAC) prompt. Approving this prompt grants your terminal session full administrative privileges, allowing you to execute restricted commands without any manual intervention.

Method 1Use the Settings Menu

This is the most user-friendly way to enable elevation for your profiles.

  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
Windows Terminal Settings button updated
Run Windows Terminal as administrator in Windows 11

Method 2Edit the JSON Settings File

Advanced users can modify the settings.json file directly for more granular control.

  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 app profile settings section
💻Code
"defaults": 
{
    "elevate": true
},

Creating a Desktop Shortcut for Admin Access

If you want a specific icon that always launches as admin, follow these 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

You can launch Windows Terminal with specific arguments using the wt.exe command. To force an elevated window via the Run dialog (⊞ Win+R), use the command wt.exe -w 0 nt --elevated. This is useful for scripts or quick access.

Summary

You can easily open Windows Terminal as admin by toggling the setting in the GUI or 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 Run Windows Terminal in the Background
Windows How to Run Windows Terminal in the Background
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 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 *