Restoring the Missing "Open With" Option in Windows 10 Right-Click Menu
A common Windows 10 issue is the disappearance of the "Open With" option from the right-click context menu when interacting with images. This guide provides two methods to resolve this problem by modifying the Windows Registry. Caution: Modifying the Registry can cause system instability. It's strongly recommended to back up your registry or create a system restore point before proceeding.
Why This Happens: The "Open With" option is linked to a registry key. Its absence indicates this key is missing or its data is corrupted.
Method 1: Direct Registry Edit
Press Win R to open the Run dialog. Type regedit
and click OK to launch the Registry Editor.
Navigate to HKEY_CLASSES_ROOT*shellexContextMenuHandlersOpen With
. If the "Open With" key doesn't exist under ContextMenuHandlers
, right-click ContextMenuHandlers
, select New > Key, name it "Open With".
In the right pane, double-click (Default)
. Change the value data to {09799AFB-AD67-11d1-ABCD-00C04FC30936}
and click OK. No restart is needed; the changes take effect immediately.
Method 2: Using a .REG File
Create a new text file.
Paste the following code into the file:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*shellexContextMenuHandlersOpenwith] @="{09799AFB-AD67-11d1-ABCD-00C04FC30936}"
.reg
file (e.g., OpenWith.reg
).
.reg
file. Confirm the User Account Control prompt.
After completing either method, the "Open With" option should reappear in your right-click context menu. Remember to always exercise caution when working with the Windows Registry.
The above is the detailed content of How to Restore Missing 'Open with' Option in Windows 10. For more information, please follow other related articles on the PHP Chinese website!