Share via

Open File location option removed in win 10 (Q to Ramesh Srinivasan) (again)

Anonymous
2018-08-04T13:24:21+00:00

You reply

 on May 22, 2016

 this question: "I know a way to add "Open File Location" in the context menu (for files in Jumplists), but it has to be set on a per-filetype basis. Let me know the version of Office you have and the file type for which you want to add the context menu item.. I can make a REG file for it." Unfortunately this question is closed. I use Word 2016 and was a big fan this option. Can you help me? Many thanks in advance. Jacek

Windows for home | Windows 10 | Files, folders, and storage

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

24 answers

Sort by: Most helpful
  1. Ramesh 176.2K Reputation points Volunteer Moderator
    2018-08-05T13:17:41+00:00

    Hi Jacek,

    The .REG modification by Keith Miller should do the trick for you. Open Notepad and copy these lines to it.

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    Save the file with .reg extension ("openlocation.reg")

    Double-click to run the REG file.

    You should see the "Open File Location" option in the Jumplist for Word.

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2018-08-06T03:39:13+00:00

    Here's a bit of PowerShell that will create the values. You can copy and paste each command into an Administrative PowerShell Console. You add or delete file extensions in the $FileExt variable to modify whatever file types you like:

    New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT

    $FIleExt = '.txt', '.doc', '.docx', '.xls', '.xlsx'

    $FileExt | %{(gp "HkCR:$_").'(Default)'} | ? {$_ -ne $Null} | %{New-Item -Path "HKCR:$_\ShellEx\ContextMenuHandlers\OpenContainingFolderMenu" -Value '{37ea3a21-7493-4208-a011-7f9ea79ce9f5}' -Force}

    Keith

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2018-08-05T14:54:03+00:00

    Hi Jacek,

    The .REG modification by Keith Miller should do the trick for you. Open Notepad and copy these lines to it.

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    Save the file with .reg extension ("openlocation.reg")

    Double-click to run the REG file.

    You should see the "Open File Location" option in the Jumplist for Word.

    YOU ARE GREAT!!!!!!!!!!!!!!!!

    It works!!! I have made change for excel files too:

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Excel.Sheet.8\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    [HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    It was so nice function in Windows 8x.

    I ask himself, why do Microsoft guy's use to think a wrong body part ;-) ?

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2018-08-05T03:04:47+00:00

    I think I do understand. I downloaded the .reg file & merged it. As written, it adds 'Open File Location' to file folders & all file typess.

    If you want to only apply it to certain file types, you have to edit the file before merging. The file as written has these two lines:

    [HKEY_CLASSES_ROOT\*\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\*\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    To apply to a specific file type, you have to determine the file type associated with the file extension. Then replace the '*' with the file type. So if you look for .doc under HKCR, you see it has a file type of Word.Document.8. The .docx extension has a type of Word.Document.12. So if you wanted to add the option to these files, you want lines that look like this:

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.8\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location]

    @="&Open File Location"

    [HKEY_CLASSES_ROOT\Word.Document.12\shell\Open File Location\command]

    @=""explorer.exe" /select,"%1""

    Keith

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  5. Anonymous
    2018-08-04T23:44:29+00:00

    Hi,

    I'm not Ramesh, but hope I can help. On his webpage, WinHelpOnline, I found this:

    /https://www.winhelponline.com/blog/add-the-open-file-location-context-menu-for-shortcuts-in-windows-xp

    If you need help modifying the .reg file to only apply to certain file types, I'm happy to help. Tell me the specific file extensions/types for which you want to enable this option.

    Keith

    Hi Keith,

    are you sure, that work in Windows 10 and Word / Excel 2016?

    I know this page, but I am not sure if you understand the problem. Look at the picture below.

    Task > Word icon, right click on recent opened file > context menu > "open file location".

    The picture above is probably from Windows 8. This function doesn't in Windows 10 exist (no more).

    Removed! A while ago. 1708 was on some way working, nobody know when and principle. Now is dead.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments