此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。" W4 \& w+ p+ Y2 Y8 i
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
2 j: v. F: y/ e5 d8 p 方式一:! U+ ~' j6 B# r+ k( g
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,3 T5 j) D" B. M1 w5 \
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和0 _2 X7 B* F- {0 f
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
4 b" p. `/ i0 p4 O+ s3 J 方式二:
$ ^7 U: d. y* b0 S, q1 ~9 }0 T 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
4 E/ B, c& M' \" _! l SetTitleMatchMode RegEx
. N6 W! A! Z0 G7 [+ E return" D S1 i* Y( _" O! ~
; Stuff to do when Windows Explorer is open
( i+ M5 V$ g: W5 r' U ;
1 U' Z+ }& A* D: S7 h/ {( ?2 O #IfWinActive ahk_class ExploreWClass|CabinetWClass) K% o! _; _7 |- V' x
; open ‘cmd’ in the current directory
) b4 ]1 g4 }7 A( L- c I4 l" J5 ] ;
& B' h4 H# Z; a5 Q! n X #c::) b* I7 z& H0 T9 ?; e
OpenCmdInCurrent()
# U# @* t2 s1 k- E: u. R1 p! U W/ ` return
+ \; C0 ]+ Y9 H# D, t3 j #IfWinActive
; l2 ]' l$ ], D9 ^ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.* ^9 w& M! x4 E1 ~% o
; Note: expecting to be run when the active window is Explorer.6 X8 y! U# f8 E; w& v+ g: ?; ]
;5 h5 q8 e, ~$ k
OpenCmdInCurrent()
$ _ z1 d! u5 u4 V0 K) O {5 i6 N0 e9 E$ ]# @' |% O$ O1 i+ K4 v
; This is required to get the full path of the file from the address bar
& l6 A) F! M p" K+ P/ O/ Z WinGetText, full_path, A
+ l: X ]3 ~) z ; Split on newline (`n)
9 q- M* |+ i7 k6 z StringSplit, word_array, full_path, `n f9 |) b. `8 k* L% A2 t% D7 Q
; Take the first element from the array# x( P! u! X6 ]; V9 a+ \8 r# }
full_path = %word_array1%/ x% W9 I4 b8 e; n R% f0 e
; strip to bare address
' J7 Q4 \% n1 t full_path := RegExReplace(full_path, “地址: “, “”)- p* u5 E" X7 V' d! }$ B0 E
; Just in case – remove all carriage returns (`r)
) I# U( n6 B+ z* p StringReplace, full_path, full_path, `r, , all3 i% V! Q0 R" f' ~2 P4 [ B
IfInString full_path, \
$ r- p& k& _( i1 v7 t. b* _ {
+ {/ V. @2 N9 ~4 x3 [) W% x) h" \& j Run, cmd /K cd /D “%full_path%”
, f0 J: ~0 S/ ~0 A3 B }2 W) k9 t+ k4 o E
else! Q9 L! M, l P2 z) G) R* e3 i
{: Y+ V2 @ c) n5 D3 }' {
Run, cmd /K cd /D “C:\ ”" T6 `! Z# N% Z/ P: ]
}$ }+ A+ e. s8 l" y% t3 e
} n2 [( C8 h3 L7 ]0 `
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。0 u' o7 g3 C. X9 k9 v* `" w
这段小代码肯能有两个你需要修改的地方
) w0 @# Q/ Q$ x. o! C# E 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键$ R5 m Q' R; x' ^' t; ?
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
* Y' {" m" _# ?( B$ a& j, b( X |