So I searched for a folder in my drive. I found the drive and selected "Open in a new Window". And now I want to get to the parent folder of that one.

But now the address bar shows Search Results in D: > New Folder. There are no "upper" buttons in the window, just back and forward. And Alt + Up Arrow goes back to the search results. I don't want the search results, I want the parent folder.

How do I do that?

enter image description here

link|improve this question

40% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Use "Open folder location" rather than "Open in a new window".

link|improve this answer
1  
Yeah, I guess that does it, but it's strange that you have to go back to the search results to achieve this. – djeidot Jan 21 '10 at 11:59
@djeidot, You don’t have to go back to the search results if you hold Shift when you select Open Folder Location. – Synetech May 3 '11 at 0:24
@Synetech I cannot find such hold shift and select Open Folder Location without going back to the search result. This is so silly me. – Nam G. VU May 4 at 8:43
@Nam, there is plenty silly when it comes to Windows Search. – Synetech May 5 at 0:09
feedback

Open folder location is the ideal, built-in way, but another option is to create your own Open in New Window context menu entry as follows:

REGEDIT4

[HKEY_CLASSES_ROOT\Folder\shell\Open New Window]
@="Open New &Window"
[HKEY_CLASSES_ROOT\Folder\shell\Open New Window\Command]
@="Explorer.exe \"%L\""

This will open the folder in the normal file-system hierarchy as opposed to as a child of search results.

Yet another option is to create an Open Parent context menu to allow you to open the parent of a folder:

REGEDIT4

[HKEY_CLASSES_ROOT\Folder\shell\Open Parent]
@="Open New &Window"
[HKEY_CLASSES_ROOT\Folder\shell\Open Parent\Command]
@="Explorer.exe \"%L\\..\""
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.