Skip to content
Follow
Windows

How to Enable or Disable the sudo Command in Windows 11

Richard
Written by
Richard
Feb 3, 2026 Updated Sep 15, 2026 4 min read
How to Enable or Disable the sudo Command in Windows 11
How to Enable or Disable the sudo Command in Windows 11

The sudo command in Windows 11 lets you run administrator-level commands directly from a standard console window without opening a separate elevated prompt. Microsoft introduced this tool starting with Windows 11 Insider Build 26052 to speed up administrative tasks in Command Prompt and PowerShell.

Advertisement

You can turn the feature on or off through the Windows Settings app whenever you need to change your setup.

⚡ Quick Answer

Enable sudo in Windows 11 via Settings System For Developers, then toggle “Enable sudo” on. You can also use Windows Terminal commands like `sudo config –enable forceNewWindow` to turn it on and `sudo config –enable disable` to turn it off.

Advertisement

What Are the Different Ways sudo Can Work?

  • In a new window: This opens a new window to run the command with administrator rights.
  • With input disabled: The command runs in the same window but doesn’t accept input while running.
  • Inline: The command runs in the same window and accepts input, like on Linux or Mac.

Windows 11 sudo offers three different operational modes that control how administrator commands run. You can configure sudo to open commands in a new window, run them in the current window with input disabled, or run them inline so you can still type responses. Choosing the right sudo mode depends on your workflow and how you want to interact with your administrator prompts.

How to Enable sudo Using Windows Settings

You can enable sudo in Windows 11 using the Settings app by going to the developer options menu. This is the quickest method to turn on sudo without needing to use command-line tools or make registry changes. Once you flip the switch in Settings, your PC is ready to run administrator commands directly from the console.

  1. Open the Settings app . You can do this by:
    • Clicking the Start button and then Settings, or
    • Pressing Win+I on your keyboard.
  2. In Settings, click on System on the left side.

    System button in Settings app
    System in the Settings app

  3. On the right side, find and click For Developers.

    For Developers tile in the Settings app
    For Developers tile in the Settings app

  4. Find the option for Enable sudo and turn the switch to On to enable it.
    Enable sudo in the Settings app
    Enable sudo in the Settings app

    You can also pick how you want sudo to work by selecting one of the three modes from the dropdown:

    • In a new window
    • With input disabled
    • Inline
  5. To turn off sudo, just switch the toggle to Off.

How to Enable or Disable sudo Using Windows Terminal (Command Prompt)

Windows Terminal lets you enable or disable sudo using command-line instructions. You can run specific commands to turn the feature on in your preferred mode or turn it completely off when you no longer need it. This method gives you direct control over your sudo settings without having to click through the graphical Settings menu.

Advertisement

Enable sudo in "In a new window" mode:

sudo config --enable forceNewWindow

Enable sudo in "With input disabled" mode:

sudo config --enable disableInput

Enable sudo in "Inline" mode:

sudo config --enable normal

Disable sudo command:

Advertisement
sudo config --enable disable

Enable or Disable sudo Using Windows Registry Editor

Windows Registry Editor lets you enable or disable sudo by modifying a specific registry key value. You can change the setting manually by navigating to the correct system folder and updating the data value to turn the feature on or off. This advanced method is useful if you manage multiple systems or prefer editing the registry directly.

  1. Open the Registry Editor.
  2. Go to this folder path:

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Sudo

  3. Look for a value named Enabled on the right side. Double-click it to change its number.
  4. Use these numbers to choose a mode:
    • 1 – "In a new window" mode
    • 2 – "With input disabled" mode
    • 3 – "Inline" mode
    • 0 – Disable sudo
  5. If you don't see Enabled, right-click on a blank space, choose New DWORD (32-bit) Value, name it Enabled, and set its value to one of the numbers above.
    Enable or disable sudo in Registry Editor
    Enable or disable sudo in Registry Editor


  6. After making changes in Registry, restart your computer for them to take effect.
sudo command in terminal console
sudo command in terminal console

Summary

Turning on sudo in Windows 11 helps you run commands as admin easily from the command line. This makes your work faster and helps keep your computer safer by not needing to log in as an administrator all the time. For more details, you can visit the official Microsoft blog.

Advertisement

What does "enable sudo" mean?

Allowing Root User Access Using Sudo Sudo will allow your system administrators to grant certain users (or groups of users) the ability to run commands as root.

How do I activate sudo?

I've made the font just a little bit bigger. So that we can see it well. And so now if we do sudu di that will run dir with elevated privileges. So let's go ahead and do that.

How to enable sudo on terminal?

If you aren't on 24H2. You'll need to upgrade to this version of Windows 11. Now that we're on the right version.

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.

Advertisement

📚 Related Tutorials

How to Open the Settings App in Windows 11
Windows How to Open the Settings App in Windows 11
How to Enable or Disable Closing Warnings in Windows Terminal
Windows How to Enable or Disable Closing Warnings in Windows Terminal
How to Add or Remove Windows Terminal Shield Icon
Windows How to Add or Remove Windows Terminal Shield Icon
How to Change Registry Editor Font in Windows 11
Windows How to Change Registry Editor Font in 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 *