
For users who prefer to use Command Prompt, adding the "Open Command Window Here" option back to windows 10 context menu is possible. There are many tutorials online available for this topic, the usual procedure will take you modifying the system's registry and permission settings (which is a risky and tedious way).
However, there is a simple and easy way to to Add "Open Command Window Here" option on context menu, with just a few clicks, you can bring back the once replaced option without messing around with the registry contents and permissions.
Here's How:
- Open NOTEPAD.
- Copy this following lines to Notepad:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\normal_cmd]
@="@shell32.dll,-8506"
"Icon"="cmd.exe,0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\normal_cmd\command]
@="cmd.exe /s /k pushd \"%V\""
[HKEY_CLASSES_ROOT\Directory\shell\normal_cmd]
@="@shell32.dll,-8506"
"Icon"="cmd.exe,0"
[HKEY_CLASSES_ROOT\Directory\shell\normal_cmd\command]
@="cmd.exe /s /k pushd \"%V\"" - Save the Notepad as .REG file to any location (preferably Desktop), and name it to whatever you want, for example cmdcontext.reg. Be sure to select the All Files (*.*) when saving.
- Once you're done saving, locate the created .REG file and double click on it to add the regfile on the registry. You will be prompted a UAC for this step, just click YES to continue.
- You will then be prompted another window (Registry Editor) for confirmation. For this, just click YES.
- Once the regfile is added, click OK.
You can now access the "Open Command Window Here" option on the context menu even without pressing the SHIFT key. It also has the cmd.exe icon which is much better to easily distinguish it on the context menu.
Post a Comment