42
12
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...
42
12
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...
1
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)
19
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.
14
In Windows 8.1 (maybe Windows 8 & 7 too, one needs to verify this), you can add the Navigation Pane option to the Quick Access Toolbar. You can then use the Alt+{NumberKey}
shortcut followed by the Enter
key to show/hide the Navigation Pane.
For example: in my case, the Navigation Pane icon is the third item in the Quick Access Toolbar, so I would press Alt+3
and then Enter
to turn the pane on/off.
This has improved my workflow tremendously. Hope it helps you too.
Figure1: Right-Click Menu
Figure2: Quick Access Toolbar with Navigation Pane
With respect to the Quick Access Toolbar, it is important to note that:
Alt+1
= show propertiesAlt+2
= create new folderAlt+3
= show/hide Navigation Pane8
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
1Nice! Using Send ^e{tab}{enter}ln
(CTRL+E, TAB ENTER instead of ALT+D TAB TAB ENTER) is slightly faster I've also bound it to ALT+N so I can use it with ALT+P !n::
for toggling the preview pane without removing my finger from ALT. – Sam Hasler – 2014-03-11T10:59:46.297
6
Here is how I do it:
1) Shift + Tab
2) Shift + Tab
3) ↓
4) L
5) N
Hope this helps!
This only works if the keyboard focus happens to be in the Explorer window. stevek_mcc’s answer is better because it starts from an absolute location instead of a relative one. – Synetech – 2017-05-19T04:38:43.827
1>
3
I can toggle the preview pane in Windows 10 by typing (with the Explorer window focussed): Alt V N Enter
Note that Alt is a separate keypress to go into the mode where you navigate the ribbon by keyboard.
2
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.
where does the focus need to be when you run it? The 1st time it ran it was ok but not it keeps trying to do a search. – Alex – 2016-02-24T10:34:29.793
Figured it out looking at the other answers. Alt+D puts the focus in the correct location. My final short cut: {#ALT -chars D}{#TAB}{#sleep 100}{#TAB}{#sleep 100}{#DOWN}{#sleep 100}{#SHIFT -chars l}{#sleep 100}{#SHIFT -chars n} Thanks! – Alex – 2016-02-24T10:56:54.703
2
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/
I have used AutoHotKey before. Could you comment on how to record actions runnable by AutoHotKey? – Amelio Vazquez-Reina – 2011-04-13T13:25:20.840
1
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.
Details here: Toggle the Navigation Pane with a Button in Windows Explorer
1
Very good thread. I wanted a folder with just icons that allows me to launch programs or folder locations of interest. I think I'm there. Here are keys:
Under folder options, view tab, click "Restore previous folder windows at logon"
To launch new folders in separate window (and just new ones), in shortcut target use the following:
%SystemRoot%\explorer.exe /n,/e, "Path to folder you want to start-in"
So, if I want to open a explorer in the D: drive I use
%SystemRoot%\explorer.exe /n,/e, D:\
Now I set-up all the shortcuts in my key folder this way and they launch in a separate window, yet all other times when I double click on folder location they don't create separate window.
1
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:
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 – 2009-09-28T07:28:59.370
0
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.
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? – Joshua K – 2010-10-04T18:19:59.867
0
You could use ctrl+F which will open the pane and then switch to navigation tab, but creating a macro sounds easiest.
0
Not the answer to the question about Windows 7 but in Windows 10:
Alt+D, Alt, V, N, Enter
1
I liked this answer, and I hope this illustration make it easier for people to understand what you are suggesting: screenshot
– Ajith Antony – 2015-03-13T07:41:03.8134Works great in windows 10 – toster-cx – 2016-04-20T07:21:08.360
1Windows 7 doesn't have a "Quick Access Toolbar". – Toro – 2014-03-15T00:25:59.160