SysChat

SysChat (http://www.syschat.com/forum.php)
-   How To (http://www.syschat.com/tips-n-tricks/how-to/)
-   -   How to add Command Prompt to the Right Click Menu of Windows (http://www.syschat.com/how-add-command-prompt-right-click-5231.html)

dwarkarao 11-24-2009 06:29 AM

How to add Command Prompt to the Right Click Menu of Windows
 
Like every other tweak, this trick is also meant to reduce the time consumed by the people who need to access the command prompt on the right click menu of the desktop. So instead of launching the command prompt from the RUN button in START menu, you can directly launch it from the right-click menu on the desktop.

Below are the steps:

1. Open a .txt file (Notebook file)

2. Copy the below lines in that .txt file and save it as “cmd.reg”

Code:

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt]
@="Command Prompt:"
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt\Command]
@="cmd.exe /k cd %1"

NOTE: Make sure that you save the file including the inverted comas (“)

3. Now, once you double click on the files, it enters into the registry and you can find the command prompt on the right click menu on the desktop.

That is it.


All times are GMT -4. The time now is 11:51 AM.


Copyright © 2005-2013 SysChat.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54