Skip to content
Follow
Windows

How to Reset Windows Terminal to Default Settings in Windows 11

Richard
Written by
Richard
Feb 4, 2024 Updated Aug 13, 2026 2 min read
How to Reset Windows Terminal to Default Settings in Windows 11
How to Reset Windows Terminal to Default Settings in Windows 11

Resetting Windows Terminal in Windows 11 takes just a minute by deleting one settings file. Windows Terminal is a free app that puts Command Prompt, PowerShell, and Linux tabs in one window.

Messing up your setup usually happens inside the settings.json file located at %LocalAppData%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\. Deleting this file puts everything back to how it looked when you first installed the app.

Keep in mind that wiping these settings deletes all your custom themes, shortcuts, and saved profiles.

⚡ Quick Answer

Open Settings , click Apps, then Installed apps. Find Terminal, click the three dots, and select Advanced options. Click the Reset button to restore default settings. Alternatively, delete the settings .json file via Command Prompt, PowerShell, or File Explorer .

Method 1Use the Settings App

The Windows Settings app provides a graphical way to wipe away custom configurations. This method undoes any custom changes made over time, returning the Windows Terminal to its original, out-of-the-box state.

Apps button in Windows 11 Settings to reset Windows Terminal
Apps button in Windows 11 Settings to reset Windows Terminal

When Settings opens, click the Apps button on the left side.

Windows 11 Install apps tile
Windows 11 Install apps tile

On the right side, select Installed apps to expand the list.

Reset Windows Terminal app advanced options
Reset Windows Terminal app advanced options

Windows Terminal, a powerful command-line application, requires specific steps for resetting its settings. Locating the application in the list of installed programs comes first. Clicking the three dots that appear next to Windows Terminal opens a dropdown menu containing the "Advanced options" entry.

Reset Windows Terminal app advanced options reset button
Reset Windows Terminal app advanced options reset button

On the Windows Terminal settings page, clicking the Reset button restores all default settings for the application. This action returns the Windows Terminal to its original configuration, undoing any previous customizations.

Closing the Settings app finishes the process.

Method 2Use Command Prompt or PowerShell

Command-line interfaces offer a faster route for clearing settings without opening any graphical menus. Deleting the configuration file via a terminal command restores the default setup instantly.

Using Command Prompt:

Open Command Prompt as an administrator. Run this command:

del /f /s /q /a "%LocalAppData%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"

Using PowerShell:

Open PowerShell as an administrator. Run this command instead:

Remove-Item -Path "$env:LOCALAPPDATA\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json" -Force

Method 3Use File Explorer

File Explorer provides a manual approach for tracking down and removing the configuration file directly. Deleting the file manually forces the program to revert to its default state.

Open File Explorer. Click the address bar at the top and type this path:

%LocalAppData%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState

Press Enter to go to that folder.

Find the file named settings.json. Right-click it and select Delete.

Restore Windows Terminal app settings
Restore Windows Terminal app settings

Windows Terminal is now reset to default.

Summary

Three main methods handle the reset process: the Settings app for a graphical approach, the command line for speed, or File Explorer for a manual workflow.

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 Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
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 at Startup in Windows 11
Windows How to Open Windows Terminal at Startup in Windows 11
How to Change Windows Terminal Language in Windows 11
Windows How to Change Windows Terminal Language 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 *