Sometimes it is useful to add a "Command Prompt" option to the context menu in Windows Explorer. However in Windows Vista/7 you can just hold the shift key down and right-click in a blank area of Windows Explorer, in that directory and select "Open command window here".
I have two "preferences" that I set for Command Prompts on every machine I use. I like to turn "Quick Edit" mode on and increase the buffer size. This means copying and pasting with the command prompt is much easier and it remembers more history from commands with a lot of output. The changes are made as follows:
From here on, we are moving into "Advanced Stuff", so, if you don't understand anything from here on, then please, don't do it!
Personally though I have got used to right clicking on directories and selecting something like "Command Prompt...". In Windows 95 there was a Power Toy that added this, however it simply makes change to the Windows Registry.
With Windows XP and beyond the following process will work to do what the Power Toy did. Rather than provide a file to download, you need to do the following.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt]
@="C&ommand Prompt..."
[HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt\Command]
@="cmd.exe /k cd /d %1"
[HKEY_CLASSES_ROOT\Drive\shell\CommandPrompt]
@="C&ommand Prompt..."
[HKEY_CLASSES_ROOT\Drive\shell\CommandPrompt\Command]
@="cmd.exe /k cd /d %1"
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\shell\CommandPrompt]
[-HKEY_CLASSES_ROOT\Drive\shell\CommandPrompt]