How to Remove “Computer” from Windows Explorer Navigation Pane?

This tutorial will help you in removing “Computer” item from the Navigation pane in Windows 7 or later as shown in following screenshot:

No_Computer_in_Win_7_Explorer_Nav_P.png

Simply follow these simple steps:

Advertisement

1. Type regedit in RUN or Start search box and press Enter. It’ll open Registry Editor.

2. Now go to following key:

HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\ShellFolder

3. Now you’ll need to create a new DWORD value “Attributes” in right-side section. But Windows will not allow you to create it as you won’t have proper permissions. So take ownership of ShellFolder key with the help of this guide.

4. Now create a new DWORD value “Attributes” in right-side section and set its value to b094010c

5. That’s it. Log off or restart your system and “Computer” will no longer present in Explorer window.

If you want to restore “Computer” in Navigation pane, simply delete “Attributes” DWORD created in step 4.

Advertisement

NOTE: If you are using 64-bit edition of Windows, you may notice that Computer icon is still present in “Browse” dialog box such as Save, Save as or Open in some 3rd party 32-bit programs. To remove Computer icon from there, you’ll need to perform the same steps in following key as well:

HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\ShellFolder

Just go to above mentioned key, take ownership of the key and in right-side pane, create a new DWORD Attributes and set its value to b094010c to remove Computer icon.

Published in: Windows 7

About the author: Vishal Gupta (also known as VG) has been awarded with Microsoft MVP (Most Valuable Professional) award. He holds Masters degree in Computer Applications (MCA). He has written several tech articles for popular newspapers and magazines and has also appeared in tech shows on various TV channels.

Comments

NOTE: Older comments have been removed to reduce database overhead.

  1. Wow works fine even on Server 2012.

    Here a bat file after the persmissions are ok.

    /////////////////BAT
    :: Created by: Zekeriyya Guclu

    taskkill /f /im explorer.exe

    REG ADD “HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\ShellFolder” /V Attributes /T REG_DWORD /D 2962489612 /F
    REG ADD “HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\ShellFolder” /V Attributes /T REG_DWORD /D 2962489612 /F
    pause

    start explorer.exe
    /////////////////////////////////////////////////

    If you want to show the folder then fill in 0 after the /D

    Regards!!!

Leave a Comment

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

NOTE: Your comment may not appear immediately. It'll become visible once we approve it.