此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人. 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么. 但是经常需要这么些操作就感到浪费了大把时间. 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行. 方式一: 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修改下你的注册表, 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和 HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可. 方式二: 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下: SetTitleMatchMode RegEx return ; Stuff to do when Windows Explorer is open ; #IfWinActive ahk_class ExploreWClass|CabinetWClass ; open ‘cmd’ in the current directory ; #c:: OpenCmdInCurrent() return #IfWinActive ; Opens the command shell ‘cmd’ in the directory browsed in Explorer. ; Note: expecting to be run when the active window is Explorer. ; OpenCmdInCurrent() { ; This is required to get the full path of the file from the address bar WinGetText, full_path, A ; Split on newline (`n) StringSplit, word_array, full_path, `n ; Take the first element from the array full_path = %word_array1% ; strip to bare address full_path := RegExReplace(full_path, “地址: “, “”) ; Just in case – remove all carriage returns (`r) StringReplace, full_path, full_path, `r, , all IfInString full_path, \ { Run, cmd /K cd /D “%full_path%” } else { Run, cmd /K cd /D “C:\ ” } } 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了. 这段小代码肯能有两个你需要修改的地方 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “ |