General Turn On or Off Show all folders in Navigation Pane of File Explorer in Windows 11


  • Staff
Navigation_pane_banner.png

This tutorial will show you how to turn on or off show all folders in the navigation pane of File Explorer for your account in Windows 11.

The navigation pane is the far left pane in File Explorer used to find files, folders, and drives on your PC or network.

If you like, you can select to show all the folders on your PC in the navigation pane. This includes all hidden folders, your user account folders, Control Panel, Libraries, and Recycle Bin.


Contents

  • Option One: Turn On or Off "Show all folders" in Navigation Pane in File Explorer
  • Option Two: Turn On or Off "Show all folders" in Navigation Pane in Folder Options
  • Option Three: Turn On or Off 'Show all folders" in Navigation Pane using BAT file


EXAMPLE: "Show all folders" on and off in navigation pane

Show_all_folders_on.png
Show_all_folders_off.png





Option One

Turn On or Off "Show all folders" in Navigation Pane in File Explorer


1 Open File Explorer (Win+E).

2 Right click or press and hold on an empty area inside the navigation pane, and click/tap on Show all folders to toggle it on (checked) or off (unchecked - default). (see screenshot below)

Show_all_folders_navigation_pane.png





Option Two

Turn On or Off "Show all folders" in Navigation Pane in Folder Options


1 Open Folder Options.

2 Click/tap on the View tab. (see screenshot below)

3 Under the Navigation pane section, check (on) or uncheck (off - default) Show all folders for what you want.

4 Click/tap on OK.

Show_all_folders_Folder_Options.png





Option Three

Turn On or Off 'Show all folders" in Navigation Pane using BAT file


1 Do step 2 (on) or step 3 (off) below for what you want.

2 Turn On 'Show all folders" in Navigation Pane

A) Click/tap on the Download button below to download the file below, and go to step 4 below.​

Turn_On_Show-all-folders_in_navigation_pane_for_current_user.bat


(Content of BAT file for reference)
Code:
@echo off

REG Add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /V NavPaneShowAllFolders /T REG_DWORD /D 00000001 /F

taskkill /f /im explorer.exe
start explorer.exe

3 Turn Off 'Show all folders" in Navigation Pane

This is the default setting.


A) Click/tap on the Download button below to download the file below, and go to step 4 below.​

Turn_Off_Show-all-folders_in_navigation_pane_for_current_user.bat


(Content of BAT file for reference)
Code:
@echo off

REG Add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /V NavPaneShowAllFolders /T REG_DWORD /D 00000000 /F

taskkill /f /im explorer.exe
start explorer.exe

4 Save the .bat file to your desktop.

5 unblock the .bat file.

6 Double click/tap on the .bat file to run it.

7 You will now notice your screen flicker as the explorer process is restarted to apply.

8 When finished, you can delete the downloaded .bat file if you like.


That's it,
Shawn Brink

 

Attachments

  • Navigation_pane.png
    Navigation_pane.png
    1.9 KB · Views: 171
  • Turn_Off_Show-all-folders_in_navigation_pane_for_current_user.bat
    392 bytes · Views: 312
  • Turn_On_Show-all-folders_in_navigation_pane_for_current_user.bat
    392 bytes · Views: 339
Last edited:

Latest Support Threads

Back
Top Bottom