How to Reset Windows Terminal to Default Settings in Windows 11

Richard
Written byRichardTech Writer, IT Professional
Feb 4, 2024 Updated Apr 5, 2026 2 min read

This article explains how to reset the Windows Terminal app to its default settings in Windows 11.

Windows Terminal is a modern app for command-line shells. It includes Command Prompt, Windows PowerShell, and bash (via Windows Subsystem for Linux (WSL)). It supports multiple tabs, panes, Unicode and UTF-8 character encoding, a GPU-accelerated text rendering engine, and theme customization with text, colors, backgrounds, and shortcuts.

Why would you reset Windows Terminal? When you customize the app and things stop working the way you want, resetting brings it back to normal.

What happens when you reset? All your custom settings are deleted. The app goes back to how it was when you first installed it.

The settings file is stored here:

%LocalAppData%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json

There are three ways to reset Windows Terminal. Pick the method that works best for you.

Method 1: Use the Settings App

First, open the Settings app. Click the Start menu and select Settings. Or press Windows key + I.

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

Windows 11 Install apps tile

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

Reset Windows Terminal app advanced options

Find Terminal in the list. Click the three dots next to it, then select Advanced options.

Reset Windows Terminal app advanced options reset button

On the Windows Terminal settings page, click the Reset button. This restores all default settings.

When you’re done, close the Settings app.

Method 2: Use Command Prompt or PowerShell

You can delete the settings file using the command line. This step requires admin privileges.

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 3: Use File Explorer

You can also browse to the file and delete it manually using File Explorer.

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

That’s it! Windows Terminal is now reset to default.

Summary

Resetting Windows Terminal is easy. You have three choices: use the Settings app, use Command Prompt or PowerShell, or use File Explorer. The Settings app method is the simplest for most users. The command-line methods work faster if you use the terminal often. File Explorer is good if you prefer clicking and dragging. All three methods delete your custom settings and bring Windows Terminal back to normal. Pick the method you’re most comfortable with.

Richard2472 articles

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights 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.

Expertise:Windows 11Ubuntu LinuxCMSApps and Browsers
View all articles by Richard →

Categories:

Tags:

Leave a Reply

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