How can I remove network from navigation pane in Windows 10?

How can I remove network from navigation pane in Windows 10?
I’ve been trying to tidy up my Windows 10 File Explorer and noticed that the Network icon in the navigation pane isn’t something I use frequently. It doesn’t seem necessary for my daily tasks and clutters up the interface more than I’d like. However, I couldn’t immediately figure out how to remove it from there. I’ve looked through various settings and options, but the solution isn’t very straightforward. The Network section popping up in my navigation pane every time I open File Explorer is starting to get a bit frustrating. I’m looking for a way to streamline my File Explorer interface by removing the Network icon from the navigation pane. It’s especially bothersome when I am trying to keep my workflow as efficient as possible, and unnecessary icons can be quite a distraction.
9 Answers

For those hesitant about manual registry edits, third-party software like Winaero Tweaker simplifies the task:
- Download and install Winaero Tweaker.
- Open the application and go to the File Explorer section.
- Locate the setting labeled “Remove Network from Navigation Pane.”
- Enable the setting and apply changes.
- Restart Windows Explorer by right-clicking the taskbar and selecting Task Manager, then “Restart” for Windows Explorer.

From an administrative standpoint, use the Command Prompt:
- Launch Command Prompt as Administrator.
- Check current settings using:
REG QUERY HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder
- Modify to hide Network by running:
REG ADD HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder /v Attributes /t REG_DWORD /d b0940064 /f
- Exit Command Prompt and restart your PC.

Powershell can also streamline this process effortlessly:
- Open Windows PowerShell as Administrator.
- Execute the following script:
$key = 'HKCR:\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder'
Set-ItemProperty -Path $key -Name Attributes -Value "b0940064" - Restart your computer to apply the changes.

To remove the network from the navigation pane in Windows 10, follow these steps:
- Press
Windows + R
to open the Run dialog. - Type
regedit
and press Enter to open the Registry Editor. - Navigate to the following path:
HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder
- Right-click on the ShellFolder key and select Permissions.
- Click the Advanced button to change the owner.
- Change the owner to your user account, apply, and give Full control permissions.
- Find the attribute value called
Attributes
and modify the hexadecimal value tob0940064
. - Close the Registry Editor and restart your computer.

If scripting is your thing, create a .reg file to automate the process:
- Open Notepad and paste the following script:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\ShellFolder]
"Attributes"=hex:b0,94,00,64 - Save the file with a
.reg
extension, likehide_network.reg
. - Double-click the saved file to merge it into the registry.
- Restart your computer.

You can clean up your Windows 10 File Explorer by removing the Network section through Group Policy Editor. Here’s what you should do:
- Press
Windows + R
to bring up the Run box. - Type
gpedit.msc
and hit Enter to open the Local Group Policy Editor. - Go to User Configuration > Administrative Templates > Windows Components > Windows Explorer.
- Find the “Hide these specified drives in My Computer” policy, double-click it, and choose the Enabled option.
- Apply the changes and restart your computer.