Windows 10: Remove Quick access from Navigation Pane in Windows 10

Discus and support Remove Quick access from Navigation Pane in Windows 10 in Windows 10 Tutorials to solve the problem; That is for to do step 10 if you have a 64-bit Windows 10. If you have a 32-bit Windows 10 installed, then you wouldn't do step 10. However, you... Discussion in 'Windows 10 Tutorials' started by Edwin, Mar 21, 2015.

  1. Gary Win User

    Remove Quick access from Navigation Pane in Windows 10


    Thanks Shawn When I was looking at your request for the reg files I saw that the one in root wasn't done and I thought maybe I misread the Tut..LOL But it is now out of the navigational pane but the folders are still there but I think that maybe they should be..


    Remove Quick access from Navigation Pane in Windows 10 [​IMG]


    Thank you for your help. I appreciate it!
     
  2. Brink
    Brink New Member

    You're most welcome. *Smile

    The other folders are for "This PC", and are not related to "Quick access". For that, you can use the tutorial below to remove them.

    https://www.tenforums.com/tutorials/6...dows-10-a.html
     
    Brink, May 11, 2015
    #17
  3. NoelC Win User
    Hi,

    I registered here just to respond to this thread and ask a question:

    What you describe (setting the attribute to 0xA0600000) does indeed hide Quick Access. It also breaks something important...

    Once Quick Access is hidden I can no longer drag and drop files into folders in the Navigation (left) pane. If I try to do so, a little red circle with a line through it appears and the file will not drag/drop.

    Do you know of any workaround to prevent this loss of functionality?

    Thanks.

    -Noel
     
    NoelC, Jul 3, 2015
    #18
  4. Brink
    Brink New Member

    Remove Quick access from Navigation Pane in Windows 10

    Hello @NoelC, and welcome to Ten Forums.

    I'm afraid that there's not a way that I've found to prevent drag and drop to navigation pane not working if you remove Quick access from the navigation pane.

    However, you can still cut and paste files to folders in the navigation pane.
     
    Brink, Jul 3, 2015
    #19
  5. NoelC Win User
    Thanks for the quick reply. I've been through just about every related registry entry I could find and while I did manage to remove the wording "Quick access" a couple of different ways, the little star remained and so the effort failed.

    If one sets the System.IsPinnedToNameSpaceTree values to 0 it unfortunately doesn't disappear.

    Probably there's something hard-coded in Explorer itself.

    -Noel
     
    NoelC, Jul 3, 2015
    #20
  6. Brink
    Brink New Member
    Yeah, System.IsPinnedToNameSpaceTree was the first thing I tested as an alternative method, but it had no effect for me either. No matter which method I used that would remove Quick access, it also disabled drag and drop to navigation pane. *Sad

    At least we can still cut/copy and paste to navigation pane for now.
     
    Brink, Jul 3, 2015
    #21
  7. Gary Win User
    Shawn, I know you are bust but is there anyway you can make this into a reg hack. I would but I lack the knowledge and I have to change this after every build.
     
  8. Brink
    Brink New Member

    Remove Quick access from Navigation Pane in Windows 10

    Hey Gary,

    I would, but the only problem is that the .reg files would not successfully merge unless steps 4 and 5 in the tutorial were done first to change permissions of the affected registry keys. *Sad
     
    Brink, Jul 17, 2015
    #23
  9. Gary Win User
    OK so a two part reg hack.*chuckle
     
  10. NoelC Win User
    It's possible to do it with a batch file IF you're willing to download a free tool that alters permissions (on files or registry keys).

    The tool is called SetACL and can be found here:
    SetACL - Automate Permissions and Manage ACLs • Helge Klein

    It also uses the REG command that comes with Windows.

    I haven't tested this batch file, but this should work when run as administrator (or with UAC disabled).

    Code: :! = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = :! :! This registry file hides "Quick access" from the root namespace tree within the navigation pane of File Explorer and :! sets Explorer to start new windows on This PC instead of Quick Access :! :! :! Change "Open File Explorer To" "This PC" in Folder Options :! REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d 0 :! :! Hide Quick Access from the root namespace tree :! SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" -actn setowner -ownr "n:Administrators" SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" -actn ace -ace "n:Administrators;p:full" REG ADD "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" /f /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 :! SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" -actn setowner -ownr "n:Administrators" SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" -actn ace -ace "n:Administrators;p:full" REG ADD "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}" /f /v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 0 :! :! Change Quick Access attributes so it simply does not show in the navigation pane :! The original attributes value is a0100000 :! :! NOTE: This breaks dragging and dropping in Explorer's Navigation Pane! :! SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" -actn setowner -ownr "n:Administrators" SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" -actn ace -ace "n:Administrators;p:full" REG ADD "HKEY_CLASSES_ROOT\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" /f /v "Attributes" /t REG_DWORD /d 0xA0600000 :! SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" -actn setowner -ownr "n:Administrators" SetACL -ot "reg" -on "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" -actn ace -ace "n:Administrators;p:full" REG ADD "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{679f85cb-0220-4080-b29b-5540cc05aab6}\ShellFolder" /f /v "Attributes" /t REG_DWORD /d 0xA0600000 :! :! End of file :! :! = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =[/quote] -Noel
     
    NoelC, Jul 17, 2015
    #25
  11. Hi,

    I have been trying to get this to work.

    I have followed the instructions exactly (including taking ownership) and nothing changed.

    So I tried using SetACL and NoelC's script, but again nothing changed.

    Any help greatly appreciated.
     
    lafargeotte, Aug 17, 2015
    #26
  12. Brink
    Brink New Member
    Hello lafargeotte,

    Please let us know what you are trying to do, and if you are having any other related issues. *Smile
     
    Brink, Aug 17, 2015
    #27
  13. NoelC Win User

    Remove Quick access from Navigation Pane in Windows 10

    If you don't have the Launch folder windows in a separate process setting checked in the File Explorer Options, View panel, then make sure and log off and on again to get File Explorer to read in the registry changes.

    -Noel
     
    NoelC, Aug 17, 2015
    #28
  14. Hi Brink,

    I am trying to remove the Quick Access from Navigation Pane.

    I followed all the steps in the tutorial (including taking ownership) but it is still there.

    So I tried using SetACL and NoelC's script (which reported success), but again nothing changed.

    Thanks,
    Paul.
     
    lafargeotte, Aug 17, 2015
    #29
  15. Brink
    Brink New Member
    Paul,

    I just tested, and it still works on my system. Did you restart the PC afterwards to fully apply?

    If so, then please post screenshots showing your registry settings for this and your Quick access in File Explorer to see if anything may stand out.
     
    Brink, Aug 17, 2015
    #30
Thema:

Remove Quick access from Navigation Pane in Windows 10

Loading...
  1. Remove Quick access from Navigation Pane in Windows 10 - Similar Threads - Remove Quick access

  2. Home / Quick Access is missing from Navigation Pane

    in Windows 10 Gaming
    Home / Quick Access is missing from Navigation Pane: Just upgraded to Windows 11 22h2. I know that Quick Access was changed to Home. I pinned my favorite folders and everything seemed to work fine until I undocked my laptop. After redocking, the Home icon was missing from the Navigation pane. If I save a file, there's no Home...
  3. Quick Access Has Disappeared from the Navigation Pane.

    in Windows 10 Gaming
    Quick Access Has Disappeared from the Navigation Pane.: My kid started pressing buttons randomly as they do...She some how got the quick access set of folders in the organize tab to disappear yet the navigation pane is checked under the layout tab when clicking on organize.. This is only while trying to save using the built in...
  4. Quick Access Has Disappeared from the Navigation Pane.

    in Windows 10 Software and Apps
    Quick Access Has Disappeared from the Navigation Pane.: My kid started pressing buttons randomly as they do...She some how got the quick access set of folders in the organize tab to disappear yet the navigation pane is checked under the layout tab when clicking on organize.. This is only while trying to save using the built in...
  5. Quick Access Has Disappeared from the Navigation Pane.

    in Windows 10 Customization
    Quick Access Has Disappeared from the Navigation Pane.: My kid started pressing buttons randomly as they do...She some how got the quick access set of folders in the organize tab to disappear yet the navigation pane is checked under the layout tab when clicking on organize.. This is only while trying to save using the built in...
  6. Quick Access is missing in the navigation pane

    in Windows 10 Network and Sharing
    Quick Access is missing in the navigation pane: Everything else shows up in the navigation pane like videos and pictures, but the only thing missing is the Quick Access folder. https://answers.microsoft.com/en-us/windows/forum/all/quick-access-is-missing-in-the-navigation-pane/fa12ce12-1b60-4c86-ace5-d0617d2a165a
  7. Quick Access Missing from Navigation Pane

    in Windows 10 Ask Insider
    Quick Access Missing from Navigation Pane: Setup a new computer and the Navigation Pane is missing the Quick Access folders. I have the quick launch up at the top along the bar but it's not listed in the Library area. This is what is missing from the machine. I've tried resetting the view panels and making a change in...
  8. Duplicate "Quick Access" in navigation pane.

    in Windows 10 Customization
    Duplicate "Quick Access" in navigation pane.: Hi, I have two "quick access" menu's in the navigation pane - Likely from some customization app from ages ago. How can I remove the duplicate entry? Please see attached screenshot. [img] Latest version of Windows 10. 157112
  9. Remove Gray Pin icon from Quick access Navigation Pane

    in Windows 10 Customization
    Remove Gray Pin icon from Quick access Navigation Pane: For Pinned items in Quick Access in Win10 Navigation pane, a gray Pin icon is displayed beside each item. Can it be removed or made transparent with Reshacker? Note: I wanted to keep the Quick access feature so that I can still drag and drop in Nav pane. Thank you...
  10. Removing Quick access from the Navigation

    in Windows 10 Support
    Removing Quick access from the Navigation: How do you remove Quick access from the left side of your folders when you have the navigation enabled? I can remove all of the icons under it just fine, but I cannot remove Quick access as a whole. 9281

Users found this page by searching for:

  1. Add Quick access in navigation pane