Get the parent of a folder from search results

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


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


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\""

Create a .reg file on your desktop and paste in the above. Close the file and double click to merge it into your registry (or right click and select "Merge"). The new context menu item should be available immediately. It will open the folder in the normal file-system hierarchy as opposed to as a child of search results. You can delete the .reg file.

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

You can right click an item in that folder, and go to Properties and see the absolute Location path.