Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Is there a Windows 7 Explorer keyboard shortcut to set focus to files/folders/content area (depicted below)?

This has bothered me for so long... I want to set my explorer window's focus to the files pane (shown below). What's the most efficient way to do that with a keyboard?

enter image description here

Here's what I've been doing:
- Tab / Shift+Tab to move focus through interactive window elements until it looks like a selection rectangle appears over one of the files in my window.
- Alt+V, Alt+D to change appearance setting of a folder contents' icons. Doesn't always work, depending on what's selected at the time.

share|improve this question
1  
+1 for the drawing :) – HackToHell Jul 7 '12 at 3:57

5 Answers

up vote 3 down vote accepted

You can use AutoHotkey to move the keyboard focus to the file pane. In this example, I use the hotkey Win+Space:

#IfWinActive ahk_class CabinetWClass ; Windows Explorer
    #Space::
        ControlFocus, DirectUIHWND3, A
        SendInput, {Space}
        return
#IfWinActive

See Also:

share|improve this answer

A compromise...
Hide the menu along the top of the Explorer window. Go to:
Tools -> "Folder Options..." -> "View" tab -> Deselect "Always show menus"

Now focus can be moved from the left and right panes (shown below) using Tab & Shift+Tab.

enter image description here

share|improve this answer

Two solutions I use: -

The first is from this Microsoft support thread where they recommend a third party app which focuses on the window under the mouse if you use the scroll wheel - which is rather handy now considering the segmented approach to Explorer.

And the other, keyboard only, is the Alt+D hotkey to focus the address bar, then press Shift+Tab twice to bring the focus to the file list (the first Shift+Tab focuses on the sorting headings). A third Shift+Tab sends focus to the folder pane.

share|improve this answer

Try Ctrl+Tab, that should do it.

For the record the terminology you are referring to is called "Property Tab Navigation" ...

Properties control

CTRL+TAB/CTRL+SHIFT+TAB: Move through the property tabs
share|improve this answer

I came here because I'm looking for asolution too.

The fastest way I found to do that was to go back and forth: use ALT + UP and then ENTER. Almost always works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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