Skip to content
Follow
Windows

How to Open Windows Terminal as Admin Automatically

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

Windows Terminal running as an admin automatically lets you open Command Prompt, PowerShell, or Linux with full system rights right away. Windows Terminal is the modern hub built into Windows 10 version 1903 and newer, plus all versions of Windows 11, that brings your command-line tools together in tabs.

You normally need to right-click the app icon and pick “Run as administrator” every time you want extra power. Setting it to start this way by default skips that extra click, while still popping up the standard User Account Control security screen to keep your PC safe.

⚡ 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 configuration ensures 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 offers more control, letting specific profiles always run with administrator privileges. This method provides a deeper level of customization for how 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 reliable way to open Windows Terminal as admin every time, providing a dedicated icon that launches Terminal with necessary permissions. This shortcut allows launching Terminal directly with administrator rights without navigating usual menus.

  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 launches using specific parameters called arguments. For instance, forcing an elevated window via the Run dialog (Win+R) requires typing wt.exe -w 0 nt --elevated. This approach benefits automated scripts or rapid access.

Summary

Windows Terminal opens as admin either by toggling the setting in the graphical interface or by adding "elevate": true to the JSON configuration. Custom workflows benefit from desktop shortcuts with elevated properties enabled. For advanced configuration, consult the official Microsoft documentation.

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

Windows Terminal currently requires a separate window for elevated sessions. Security context changes prevent mixing standard and administrator tabs in the same window instance. Each elevated tab spawns a dedicated, high-privilege window process.

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

The Ctrl+Shift+Enter shortcut serves as a standard Windows feature for launching apps from the Start menu. It fails to work inside the Terminal application itself for elevating a new tab. Profile settings or command-line arguments must trigger elevation instead.

Was this guide helpful?

0% of readers found this helpful (1 votes)

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 *