Click here to Skip to main content
Licence CPOL
First Posted 18 Apr 2010
Views 10,783
Downloads 126
Bookmarked 21 times

Open cmd.exe from Explorer

By | 18 Apr 2010 | Article
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)

About the Author

kim.david.hauser

Software Developer (Senior)

Switzerland Switzerland

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberMunim Abdul20:51 21 Apr '10  
QuestionCan be done directly in Tools/Options PinmemberDan Buskirk0:07 20 Apr '10  
GeneralPowertoys PinmemberSandyM22:42 19 Apr '10  
GeneralPowerShell Pinmemberleal858:30 19 Apr '10  
GeneralRe: PowerShell Pinmemberleal858:15 20 Apr '10  
Generalnot working PinmemberMember 44854302:10 19 Apr '10  
GeneralWindows 7 PinmemberTL Wallace14:21 18 Apr '10  
GeneralRe: Windows 7 Pinmemberbrianhama18:06 19 Apr '10  
Generalalternative Pinmemberafriza11:57 18 Apr '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 18 Apr 2010
Article Copyright 2010 by kim.david.hauser
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid