General Add or Remove This PC in Navigation Pane of File Explorer in Windows 11


Display_banner.webp

This tutorial will show you how to add or remove This PC in the navigation pane of File Explorer for your account in Windows 11.

Windows 11 shows the This PC icon in the navigation pane of File Explorer by default. This makes it easy to browse your Devices and drives and Network locations in one location.

If you prefer not to have This PC show in the navigation pane of File Explorer, you can remove it.


If you turn on Show all folders in the navigation pane, This PC will always show in the navigation pane.

This will not remove the This PC icon from the older Open and Save as type common item dialog boxes like below. If wanted, you can manually change the places bar items in common dialog boxes to remove This PC from them.

Common_item_dialog.png



Contents

  • Option One: Add or Remove This PC in Navigation Pane of File Explorer in File Explorer
  • Option Two: Add or Remove This PC in Navigation Pane of File Explorer in Folder Options
  • Option Three: Add or Remove This PC in Navigation Pane of File Explorer using REG file


EXAMPLE: This PC in the navigation pane of File Explorer

This-PC_File_Explorer_navigation_pane.png





Option One

Add or Remove This PC in Navigation Pane of File Explorer in File Explorer


If you select to open File Explorer to This PC by default, it will automatically add This PC back to the navigation pane.


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 This PC to toggle add (checked - default) or remove (unchecked) for what you want. (see screenshot below)

This-PC_navigation_pane.png





Option Two

Add or Remove This PC in Navigation Pane of File Explorer in Folder Options


If you select to open File Explorer to This PC by default, it will automatically add This PC back to the navigation pane.


1 Open Folder Options.

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

3 Under the Navigation pane section, check (add - default) or uncheck (remove) Show This PC for what you want.

4 Click/tap on OK.

This-PC_Folder_Options.png





Option Three

Add or Remove This PC in Navigation Pane of File Explorer using REG file


1 Do step 2 (add), step 3 (remove), or step 4 (default) below for what you would like to do.

2 Always Add This PC to Navigation Pane in File Explorer

This will override Option One and Option Two.


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

Add_This-PC_from_navigation_pane_in_File_Explorer.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}]
"System.IsPinnedToNameSpaceTree"=dword:00000001

3 Always Remove This PC from Navigation Pane in File Explorer

This will override Option One and Option Two.

If you select to open File Explorer to This PC by default, File Explorer will still open to This PC without adding This PC back to the navigation pane.


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

Remove_This-PC_from_navigation_pane_in_File_Explorer.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}]
"System.IsPinnedToNameSpaceTree"=dword:00000000

4 Default User Choice This PC on Navigation Pane in File Explorer

This is the default setting.

This will allow you to use what is set in Option One or Option Two.


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

Default_userchoice_This-PC_on_navigation_pane_in_File_Explorer.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}]
"System.IsPinnedToNameSpaceTree"=-

5 Save the .reg file to your desktop.

6 If you have Smart App Control turned on, you will need to unblock the downloaded REG file.

7 Double click/tap on the downloaded .reg file to merge it.

8 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.

9 If File Explorer is currently open, then close and reopen File Explorer to apply.

10 You can now delete the downloaded .reg file if you like.


That's it,
Shawn Brink


 

Attachments

Last edited:
Hi.

The setting is controlled by the following registry entry:
Code:
Path  : [HKEY_CURRENT_USER\Software\Classes\NotificationData]
Entry : "0D83063EA3B8ACF5"=hex:xx,00,00,00,xx,00,00,00

Changing this setting via the regedit requires a computer restart.

The value controls the behavior of both "Show This PC" and "Show Network."
This is the equivalent of doing it via the GUI.

The first byte is a counter that increments each time the setting is changed.
It can't be 0 but it also doesn't need to be incremented for the setting to be applied.

Show This PC: 5th byte\ on: 1st bit 1, 2nd bit 0 | off: 1st bit 0, 2nd bit 1
Show Network: 5th byte\ on: 3rd bit 1, 4th bit 0 | off: 3rd bit 0, 4th bit 1

If you toggle only 1 setting in the GUI, you will have different value from the following.
For example, if you have never toggled "Show This PC" and you turn off "Show Network":
1st and 2nd bit will be 0, 3rd bit 0, 4th bit 1: leading to the value "8" (00001000).
If the 2 bits are set to 0, it uses the default behavior which is "Show".

Show This PC + Show Network: (or delete the entry (default))
Code:
[HKEY_CURRENT_USER\Software\Classes\NotificationData]
"0D83063EA3B8ACF5"=hex:01,00,00,00,05,00,00,00

Show This PC + Hide Network:
Code:
[HKEY_CURRENT_USER\Software\Classes\NotificationData]
"0D83063EA3B8ACF5"=hex:01,00,00,00,09,00,00,00

Hide This PC + Show Network:
Code:
[HKEY_CURRENT_USER\Software\Classes\NotificationData]
"0D83063EA3B8ACF5"=hex:01,00,00,00,06,00,00,00

Hide This PC + Hide Network:
Code:
[HKEY_CURRENT_USER\Software\Classes\NotificationData]
"0D83063EA3B8ACF5"=hex:01,00,00,00,0a,00,00,00
 

My Computer

System One

  • OS
    .
Back
Top Bottom