Click here to Skip to main content
15,884,473 members
Articles / Operating Systems / Windows 7

Open cmd.exe from Explorer

Rate me:
Please Sign up or sign in to vote.
4.08/5 (12 votes)
18 Apr 2010CPOL1 min read 45.9K   410   20   10
Open a cmd console from almost anywhere in Explorer via context menu

Files.png

(The installer and uninstaller registry script - content of the download)

Introduction

Did you ever want to open a cmd console directly from a folder in Windows Explorer. Nothing easier than that, but you need to Help Windows a little bit first. To do so, you can use two registry entries under HKEY_CLASSES_ROOT and you come up with a context menu entry to open a console window from right where you are in Explorer.

OpenContetxtMenu_OnFolder.png

On a Folder or drive

OpenContetxtMenu_OnFile.png

On a file

The solution works for 'right click' on files, folders, drives and some special folders like "Shared Documents" or "My Documents". It does not work for "Recycler", "Network", "System" and so on.

CmdShellExtention_v1

Using the Code

The tool comes with two registry scripts - an installer and an uninstaller script so you easily can remove the extension from the registry if needed.

Installing the Extension

Here you see the content of the installer script (CmdShellExtention_Install.reg):

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\Shell\OpenPrompt] 
@="Command Prompt" 

[HKEY_CLASSES_ROOT\*\Shell\OpenPrompt\Command] 
@="cmd.exe /d cd %l" 

[HKEY_CLASSES_ROOT\Folder\Shell\OpenPrompt] 
@="Command Prompt" 

[HKEY_CLASSES_ROOT\Folder\Shell\OpenPrompt\Command] 
@="cmd.exe /d cd %l" 

Uninstalling the Extension

And here is the content of the script for uninstalling the extension (CmdShellExtention_UnInstall.reg):

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\Shell\OpenPrompt]

[-HKEY_CLASSES_ROOT\Folder\Shell\OpenPrompt]

That's the trick! Simple but handy. And all without writing a DLL for a shell extension.

Vista and Windows 7

Try "/t":

@="cmd.exe /t cd %l"  

instead of "/d":

@="cmd.exe /d cd %l"

Points of Interest

With these registry entries, you can easy create various types of simple but powerful automation from within the Windows Explorer context menu.

History

  • April 18. 2010 - Version 1.0
    • Initial release with support for click on files, folders, drives and some special folders

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
programmer and software junkie since 1991 zurich switzerland

Comments and Discussions

 
Questioncmd.exe file error Pin
rajan12011-Oct-18 0:24
rajan12011-Oct-18 0:24 
GeneralMy vote of 1 Pin
Munim Abdul21-Apr-10 20:51
Munim Abdul21-Apr-10 20:51 
QuestionCan be done directly in Tools/Options Pin
Dan Buskirk20-Apr-10 0:07
Dan Buskirk20-Apr-10 0:07 
GeneralPowertoys Pin
SandyM19-Apr-10 22:42
SandyM19-Apr-10 22:42 
GeneralPowerShell Pin
fabrice.leal19-Apr-10 8:30
fabrice.leal19-Apr-10 8:30 
GeneralRe: PowerShell Pin
fabrice.leal20-Apr-10 8:15
fabrice.leal20-Apr-10 8:15 
I already managed to do it! Big Grin | :-D
In Windows 7, I added the following keys to the registry:

FILES (open in current directory)

HKEY_CLASSES_ROOT\*\shell\openPrompt = Open Prompt
HKEY_CLASSES_ROOT\*\shell\openPrompt\command = C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit

BACKGROUND OF DIRECTORY (open in current directory)

HKEY_CLASSES_ROOT\Directory\Background\shell\openPrompt = Open PowerShell
HKEY_CLASSES_ROOT\Directory\Background\shell\openPrompt1\command = C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command cd '%V'

DIRECTORY (open in selected directory)

HKEY_CLASSES_ROOT\folder\shell\openPrompt = Open PowerShell
HKEY_CLASSES_ROOT\folder\shell\openPrompt\command = C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -Command cd '%1'
Generalnot working Pin
Member 448543019-Apr-10 2:10
Member 448543019-Apr-10 2:10 
GeneralWindows 7 Pin
Terence Wallace18-Apr-10 14:21
Terence Wallace18-Apr-10 14:21 
GeneralRe: Windows 7 Pin
brianhama19-Apr-10 18:06
brianhama19-Apr-10 18:06 
Generalalternative Pin
afriza18-Apr-10 11:57
afriza18-Apr-10 11:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.