Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Hide Library and Special Folders from File Explorer on Windows

April 18, 2024 Windows 10Windows 11

Hide Library and Special Folders from File Explorer on Windows

By default, Windows File Explorer shows several default folders: library folders (Video, Downloads, Music, Documents, Pictures, Desktop, 3D Objects), the Quick Access pane, Network environment and OneDrive icons, and recently opened files and folders.

If your users don’t use library folders and default items for navigation, you can hide them in File Explorer.

Hide library folders in navigation pane of file explorer in Windows

Windows doesn’t have built-in tools to hide the default navigation items and folders in File Explorer. You can hide the default library icons in File Explorer by making changes to the registry. Below is a list of registry paths for default Windows libraries:

Library ItemRegistry path
PicturesHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag
VideosHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag
DownloadsHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag
MusicHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag
DesktopHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag
DocumentsHKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag
3D Objects HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag
Removable drives HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders\{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}
(this will hide the item from the navigation pane, but will not prevent access to the USB drive)

For example, to hide the Pictures folder in File Explorer:

  1. Open the registry editor (regedit.exe);
  2. Go to the reg key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag
  3. Change the value of the ThisPCPolicy parameter to Hide;
    hide library folder via registry
    The default value is Show.
  4. Restart the computer and check that the Pictures folder has been hidden from the Explorer.

In the same way, you can hide all other library folders.

In an Active Directory domain environment, you can use Group Policies to hide library folders in File Explorer on all computers.

  1. Open the Group Policy Management console (GPMC.msc) and link a new GPO to the OU containing the user computers;
  2. Navigate to Computer Configuration -> Preferences -> Windows Settings -> Registry -> New -> Registry Item;
  3. Create a separate GPP entry for each of the registry keys in the table:
    Action: Update
    Hive: HKEY_LOCAL_MACHINE
    Key Path: SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag
    Value name: ThisPCPolicy
    Value type: REG_SZ
    Value date: Hide
    

    Find out how to create or change a registry value using Group Policy.
  4. Create a registry item for each of the library folders you want to hide;
    Hide libraries folders from File Explorer using GPO
  5. Restart the user’s computer to apply the new GPO settings and ensure that the libraries are hidden from File Explorer.

You can also hide the following default folders in File Explorer:

Hide the Quick Access folder in the navigation pane:

  • Path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
  • Type: REG_DWORD
  • Parameter name: HubMode
  • Value: 1

Hide the Network neighborhood icon:

  • Path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder
  • Parameter name: Attributes
  • Type: REG_DWORD
  • Value: 00100000

hide quick access in file explorer

Hide the OneDrive icon:

  • Path: HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}
  • Parameter name: System.IsPinnedToNameSpaceTree
  • Type: REG_DWORD
  • Value: 0

This way you can make the Windows Explorer interface more compact and clean.

remove network icon from navigation pane

You can also change the default folder that opens when you start File Explorer.

  • Path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
  • Type: REG_DWORD
  • Parameter: LaunchTo

Available values: 1 (This PC), 2 (Quick Access), 3 (Downloads folder)

This registry parameter configures the Open File Explorer to option in the Explorer properties.
Set File Explorer to open to This PC instead of Quick Access

It is also possible to hide the most recently opened files and folders from being displayed in the navigation pane.

  • Path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
  • Type: REG_DWORD
  • ShowFrequent = 0 (hide recently opened folders)
  • ShowRecent = 0 (hide recently opened files)

This works on both Windows 10/11 and Windows Server 2022/2019/2016 (for example, I used this guide to hide the default libraries folders in File Explorer for users on the RDS server).

1 comment
4
Facebook Twitter Google + Pinterest
previous post
Installing Windows 11 without Network and Internet Connection
next post
How to Read Outlook Emails with PowerShell

Related Reading

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

1 comment

JOE March 2, 2025 - 4:49 am

Your “Hide Library and Special Folders from File Explorer on Windows” didn’t work. Your instructions were clear but the result was 0! Using 24H2 and tried several work-arounds to either hide or remove those pesky Shell Folders … no success … I think it can’t be done … MS has a reason for forcing folks to use these folders …

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • How to Delete Old User Profiles in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Backup and Copy Local Group Policy Settings to Another Computer
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top