Does Windows Explorer in Windows 7 have a keyboard shortcut that hides or shows the navigation pane?

It's pretty annoying each time to click Organize|Layout|Navigation pane...

link|improve this question

80% accept rate
Great Question! +1 – brandstaetter Sep 16 '09 at 7:20
feedback

9 Answers

up vote 0 down vote accepted

I don't believe there is a keyboard shortcut (I just tried all the ctrl/alt + alphabet keys, and none of them opened the navigation pane)

link|improve this answer
feedback

Here is how I do it:

1) Shift + Tab

2) Shift + Tab

3)

4) L

5) N

Hope this helps!

link|improve this answer
1) and 2) should probably be "shift+tab until you see a bounding box around 'organize'". tab & Shift+tab will cycle through all fields/controls/buttons on any/most windows dialogs... – horatio Apr 19 '11 at 19:18
feedback

you may want to record an action and script it. you and use autohotkey to execute that script with a keyboard shortcut. http://www.autohotkey.com/

link|improve this answer
I have used AutoHotKey before. Could you comment on how to record actions runnable by AutoHotKey? – roseck Apr 13 '11 at 13:25
feedback

Not a direct answer, but you can hide the navigation pane in one folder, and apply this setting for all folders. You will now have to manually enable the navigation pane each time you want to use it.

Here's how:

  1. Open Folder Options via the Tools menu (ALT-T, O)
  2. Select "View" tab
  3. Press "Apply to Folders"
link|improve this answer
It's not about how to hide the pane permanently, rather I'd like to have an option to hide and show it using a key shortcut. – Toro Sep 28 '09 at 7:28
feedback

I can't see any keyboard shortcuts (apart from OGR's answer), but there is a plugin which adds a Navigation Pane button to the Windows Explorer bar, which at least makes it quicker to toggle.

NavPane button

Details here: Toggle the Navigation Pane with a Button in Windows Explorer

link|improve this answer
feedback

here is a autohotkey script

Win+A toggles the navi pane

/*
Author:  
Date:    
Contact: 
*/

#NoTrayIcon
#Persistent
#NoEnv
#SingleInstance, Force

#IfWinActive ahk_class CabinetWClass
#a::
Send !d{tab}{tab}{enter}ln
link|improve this answer
feedback

Yes, it's not very well thought out on Microsoft's behalf.

If I have a folder on my desktop which contains JUST shortcut to programs that do say "audio" work. When I open the folder I just want to see icons, not the navigation pane.

If I make it vanish for that folder, then the next time I open explorer (say to look at my PC folder structure) it's gone from there also.

Windows 7 should remember whether or not the navigation pane was enabled on a "per folder" basis, or AT THE VERY LEAST, provide a quick shortcut key to display or hide it.

Piss poor if you ask me.

The navigation pane takes up a lot of space, and people who like their folders and work areas looking "just right" won't be very please at this omission. In this respect, the old explorer worked a lot better. (Even if it did forget the layout for ALL of your folders from time to time!). This one doesn't even have options to remember your folder layout with respect to the navigation pane. Probably why M$ couldn't be bothered to fix the original problem with it, electing to just ommit it from future versions instead.

link|improve this answer
I don't have Windows 7 yet, but Vista it did not save my folder settings until I disabled UAC. Do you have UAC enabled or disabled? – Good Time Tribe Oct 4 '10 at 18:19
feedback

Here is a macro in PhraseExpress (freely available here):

{#shift {#tab}}{#sleep 500}{#shift {#tab}}{#sleep 500}{#down}{#sleep 500}l{#sleep 500}n

Note: sleep 500 makes it more stable.

link|improve this answer
feedback

Here is how I do it:

1) Alt+D (puts the focus in the Address bar, so works wherever it was before)

2) Tab, Tab

3) Space

4) L

5) N

This is optimized for speed of typing; you can save a Tab if you use Ctrl+E or Ctrl+F to put the focus in the search box instead.

If you've just opened the window, three presses of Tab will get you to the Organize button in step 3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.