Add Opening Methods to the Context Menu For All Files in Windows 8

Introduction 

 
Today we are discussing the Context Menu that is shown when the user right-clicks a file to open it. By default when a user right-clicks on a file, a Context Menu is displayed and it consists of all the methods or lists to open the file. The user can select an option from the list to open the file. But in some cases, the default style is displayed with "Open with" which provides a list of various applications and the user must go through from the list of unknown applications. This leads to a waste of time to open a specific file. We can also extend the functionality of the Windows 8 Context Menu. We can also set our application as the one for opening files such as with Notepad.
 
In this article, we are going to add an extra feature to open the files in the Context Menu of Windows 8. To add the option in the Context Menu we need to configure it in the registry. Here we define two options in the Context Menu "Open with Notepad" and "Open with Excel" by configuring it in the system registry. 
 
You have to follow these steps to add the option in the Context Menu for all files in Windows 8.
  
Step 1
 
Go to the run box by pressing Windows Key + R from the keyboard.
 
command-prompt-in-windows8.jpg
 
Step 2
 
Enter regedit.exe in the open box and press Ok.
 
registery-command-in-windows8.jpg
 
The Registry Editor window is opened.
 
Step 3
 
Go to the HKEY_CLASSES_ROOT and expand it. Then expand the * folder.
 
registory-edit-in-windows8.jpg
 
Step 4
 
Point to the "shell" folder and right-click on it.
 
registory-edit-in-windows8(1).jpg
 
Step 5
 
Choose New-> Key to create a new key.
 
context-menu-in-windows8.jpg
 
Step 6
 
Enter the rename "Open with Notepad" to New Key.
 
new-key-in-windows8.jpg
 
Step 7
 
Right-click on the new key and select New-> Key to create another new key and give it the name "command".
 
context-menu-in-windows8.jpg
 
context-menu-in-windows8(1).jpg
 
Step 8
 
Double-click on the (Default) value in the right-hand pane and enter the following and press OK.
  
adding-method-in-windows8.jpg
 
To generate "Open with Excel" repeat steps 3 to 7 and then enter the following:
          
adding-command-to-context-menu-in-windows8.jpg
 
adding-command-to-context-menu-in-windows8(1).jpg
 
Step 9
 
The changes are immediately applied to the Context Menu. To see the effect just right-click on any file and you'll see the option that we created:
 
create-shortcut-in-windows8.jpg
 

Summary 

 
In this article, we learned about Add Opening Methods to the Context Menu For All Files in Windows 8. 


Similar Articles