Get the parent of a folder from search results

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