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

Windows Terminal is a powerful tool for managing command-line shells like Command Prompt, PowerShell, and WSL. Many tasks require elevated privileges to modify system files or change settings. This guide explains how to open Windows Terminal as admin automatically to save time.

Why do this?

Running commands as an administrator gives you full control over your computer. If you frequently perform system tasks, manually right-clicking to run as administrator becomes tedious. Setting it to happen automatically streamlines your workflow.

What happens when you do this?

Once configured, every new tab or window you open in Windows Terminal will automatically trigger a UAC (User Account Control) prompt. Upon approval, your session will have full elevated privileges, allowing you to execute restricted commands without extra steps.

Method 1: Use 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 2: Edit 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

42 Comments

Leave a Comment

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