Skip to content
Follow
Windows

How to Open Windows Terminal as Admin Automatically

Richard
Written by
Richard
Feb 15, 2026 Updated Aug 13, 2026 2 min read
How to Open Windows Terminal as Admin Automatically
How to Open Windows Terminal as Admin Automatically

Windows Terminal is an app for Windows 11 that puts Command Prompt, PowerShell, and other command tools into one single window with multiple tabs. Running this app with administrator rights gives it full system permissions to make deep changes to your PC.

You normally have to right-click the app icon and pick Run as administrator every time you need those extra powers. However, you can change the settings so Windows Terminal always opens with admin rights automatically by default.

⚡ Quick Answer

Open Windows Terminal, go to Settings , select Defaults under Profiles, and toggle “Run this profile as Administrator” to On. Save your changes to make it launch with admin privileges every time.

How to Make Windows Terminal Always Open as Admin

Apply this configuration through the settings menu:

  1. Open the Windows Terminal app:

    Click the Start menu button, type Terminal in the search box, and then click Windows Terminal from the results.
  2. Go to Settings :

    When Windows Terminal opens, click the down arrow next to the tabs at the top. Then click Settings (or press Ctrl + ,).
Opening Windows Terminal app
open the Terminal app in Windows

Windows Terminal Settings button
Windows Terminal Settings button updated

3. Select the Profiles section from the left sidebar within the settings window, then click Defaults to apply rules globally.

4. Locate the setting labeled "Run this profile as Administrator" and toggle the switch to On.

Run Windows Terminal as Administrator setting
Run the Terminal window as administrator in Windows

5. Click the Save button at the bottom of the window to apply changes.

Windows Terminal will now automatically request administrative access upon launch.

Another Way: Use the JSON File to Make Terminal Run as Admin

Direct editing of the Windows Terminal configuration file (formatted as JSON) provides an alternative method for modifying these preferences.

Follow these steps:

  1. Open Windows Terminal and click the down arrow on the top bar.
  2. Click Open JSON file at the bottom left of the Settings screen.
Open JSON file in Windows Terminal
Windows Terminal open json file

The JSON file loads inside the default text editor. Search for the section containing "defaults": { }.

Windows Terminal profile section in JSON file
Terminal app profile section

Insert the following line inside the "defaults" block to enforce administrative privileges:

💻Code
"elevate": true,

Revert the behavior later by changing the value:

💻Code
"elevate": false,

Example:

💻Code

"defaults": {
    "elevate": true
},

Save and close the file. Subsequent launches of Windows Terminal will inherit admin rights whenever that line evaluates to true.

Summary

  • Windows Terminal lets you run command-line apps like PowerShell and Command Prompt with cool features.
  • You can set it to always open as administrator so you don’t have to right-click every time.
  • Just use the Settings menu or edit the JSON file to turn this on or off.
  • Running Terminal as admin helps you run commands that need extra permissions.

Consult the official Microsoft documentation for further details: https://learn.microsoft.com/en-us/windows/terminal/

Was this guide helpful?

100% 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 Change Default Distro in Windows Subsystem for Linux
Windows How to Change Default Distro in Windows Subsystem for Linux
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
How to Set Windows Terminal to Open with Command Prompt on Windows 11
Windows How to Set Windows Terminal to Open with Command Prompt on Windows 11
How to Open Windows Terminal Automatically When You Start Windows 11
Windows How to Open Windows Terminal Automatically When You Start Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

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