Modify the Registry Manually
To add the
Command Prompt command to the shortcut menu:
- Click Start, click Run, type regedit, and then click OK.
- Locate the following registry key:
HKEY_CLASES_ROOT\Directory\shell
- Right-click the shell key, point to New, and then click Key.
- Name the new key OpenNew.
- Click the OpenNew key, and then double-click the Default value in the right pane.
- Change the value to Command Prompt. Click OK.
- Right-click the OpenNew key, point to New, and then click Key.
- Name the new key Command.
- Double-click the Default item in the right pane.
- Change the value to cmd.exe /k cd %1.
If you have multiple drives on your computer, you can add a similar command to the shortcut menu that appears when you right-click a drive in Windows Explorer or My Computer. The steps to do this are the same as those for creating the
Command Prompt command, except that you use the
HKEY_CLASSES_ROOT\Drive\shell registry key as the starting point. Also, change the value of the
Default value in the
HKEY_CLASSES_ROOT\Drive\shell\OpenNew\Command key to
cmd.exe /k.
Modify the Registry with a Script
To add the
Command Prompt command to the shortcut menu:
- Copy the following text to a file named Cmdhere.reg:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\OpenNew]
@="Command Prompt"
[HKEY_CLASSES_ROOT\Directory\shell\OpenNew\Command]
@="cmd.exe /k cd %1"
- Save the Cmdhere.reg file.
- Double-click the Cmdhere.reg file to automatically add the registry entries.
No comments:
Post a Comment