Windows

How to Add or Remove the Navigation Pane in Windows 11

Richard
Written by
Richard
Feb 4, 2026 Updated Apr 1, 2026 2 min read
How to Add or Remove the Navigation Pane in Windows 11

This guide helps you show or hide the navigation pane in Windows 11’s File Explorer. The navigation pane is the left-side panel where you see folders like Desktop, Downloads, and Documents.

What is the Navigation Pane?

The navigation pane in Windows File Explorer displays your folders and drives. It helps you find your files quickly. It’s useful, but sometimes it takes up space. This is especially true on smaller screens.

Want more room to see your files? You can hide this pane. When you want it back, you can show it again. The setting applies to all folders. It stays hidden or shown everywhere until you change it.

How to Show or Hide the Navigation Pane Using File Explorer

Follow these simple steps:

  1. Open File Explorer. Press Win + E on your keyboard to open it quickly.
  2. Look at the top menu (called the Command Bar) and click on View.
  3. In the dropdown, click on Show and then choose Navigation pane to show or hide it.
Show or hide the navigation pane in Windows 11

How to Show or Hide the Navigation Pane Using Windows Registry (Advanced)

You can use another method if you are comfortable with Windows Terminal. The Registry Editor lets you change the navigation pane setting. Be careful when editing the registry. Mistakes can cause problems.

Here’s how:

  1. Open the Windows Terminal app. Search for it in the Start menu.
  2. The setting is saved in the registry here: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer
  3. The value to change is called PageSpaceControlSizer. It is a binary value (REG_BINARY).

To Show the Navigation Pane

Run this command in Windows Terminal:

🗝️Registry
REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer /v PageSpaceControlSizer /t REG_BINARY /d a00000000100000000000000ec030000 /f
Registry value to show navigation pane

To Hide the Navigation Pane

Run this command instead:

🗝️Registry
REG ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer /v PageSpaceControlSizer /t REG_BINARY /d a00000000000000000000000ec030000 /f

What Each Part of the Command Means

  • /v specifies the name of the value to change.
  • /t REG_BINARY means the data type is binary.
  • /d is the data to set.
  • /f forces the change without asking for confirmation.

FLAG: This method requires admin privileges. After running the command, restart your computer to apply the changes.

Summary

You can easily show or hide the navigation pane in Windows 11 File Explorer. Hiding the pane gives you more space. Showing it makes navigation easier.

  • Use the File Explorer’s View menu for the easiest way.
  • Use Windows Terminal and registry commands if you want more control (advanced users only).
  • Remember to restart your PC if you use the registry method.

That’s it! Now you know how to customize your File Explorer to fit your needs.

Was this guide helpful?

Tags: #Windows 11
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.

2469 articles → Twitter

📚 Related Tutorials

How to Add and Remove Quick Access Folders on Navigation Pane of File Explorer in Windows 11
Windows How to Add and Remove Quick Access Folders on Navigation Pane of File Explorer in Windows 11
How to Remove Home Folder from Windows 11 File Explorer
Windows How to Remove Home Folder from Windows 11 File Explorer
How to Show or Hide Drive Letters in Windows 11 File Explorer
Windows How to Show or Hide Drive Letters in Windows 11 File Explorer
How to Add or Remove Favorites in Windows 11 File Explorer
Windows How to Add or Remove Favorites in Windows 11 File Explorer

Leave a Reply

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