此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
! x) `" C9 o% ?8 `2 Z- X3 ? 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
# m. A* V9 \, c4 X [3 R/ f 方式一:
) @. |9 ]4 v4 p 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
4 M* j2 h7 V- V+ K# M 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
4 U' n6 A/ O9 ?" x! p1 m3 b& x HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。7 _8 p2 a( l0 D' t2 [$ v9 r2 `
方式二:
) V& W1 \" ~9 ?1 i! D 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:% N( Y6 ]+ W- y0 C6 H/ t; x9 `; W
SetTitleMatchMode RegEx0 X, v( C. e+ z& b% X( B
return7 A; E' T8 l6 v) o% i" [+ y
; Stuff to do when Windows Explorer is open
1 E# H3 N2 k- B. b" y ;
m4 _& V) s3 t1 f- X2 T #IfWinActive ahk_class ExploreWClass|CabinetWClass4 J! ^: T: m( y, A
; open ‘cmd’ in the current directory
4 O) {9 C+ Q2 a0 r% ?. N ;
5 N% ~* W$ w% t; ^7 M& M/ B' ~' J1 r- A #c::3 l; n. @1 c- t( Q3 C1 p5 a
OpenCmdInCurrent()9 N0 l3 M6 `2 A, i( J
return
, ]$ w- W$ k `4 `- E7 S7 Y #IfWinActive
/ `& f" a5 R# @3 f; W ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
7 g0 H9 ?: {$ Z8 m# g ; Note: expecting to be run when the active window is Explorer.2 ? G/ C% ]6 d. s, o$ d
;/ c0 O" ~ B' s9 M& t
OpenCmdInCurrent()7 K( u! p. B# u- T' C# u
{
8 I' K: Z9 [2 Z" p/ D5 z2 R- g ; This is required to get the full path of the file from the address bar
5 w" s# m9 E; V% r4 j WinGetText, full_path, A q/ t8 D# M0 g% } g: q1 m& M/ p7 u
; Split on newline (`n)- X2 `2 T- n! I4 T8 C& r- n& g
StringSplit, word_array, full_path, `n# \: ?+ b: x' Q7 b+ n1 W r( `
; Take the first element from the array" S1 r3 s" l! \7 M( Z* B. t g( b
full_path = %word_array1%
7 o. {- H" P9 e/ H/ U1 z ; strip to bare address7 P$ q# t( r$ R
full_path := RegExReplace(full_path, “地址: “, “”)
) `5 ~7 }. A I" b C ; Just in case – remove all carriage returns (`r)
7 b2 d* e: ?3 ]4 g* b6 @# O StringReplace, full_path, full_path, `r, , all
& W9 x! b& x& R0 `+ h IfInString full_path, \
" x6 h _/ d. u. c! B {
' F, |( ^4 ^. J Run, cmd /K cd /D “%full_path%”: w+ O9 ^! ]8 C4 d
}
, S* D' b) K3 p2 e/ X else
3 x6 I9 y. P# W& w' [ { T" z. g; I* A% p0 Z1 ^9 ?
Run, cmd /K cd /D “C:\ ”
$ Z* Y5 A4 @# @ }) U; p S* E F: Q
}
2 X0 R& V" Z& ? 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
2 b! G8 v- j8 \- b4 k# l 这段小代码肯能有两个你需要修改的地方
( S% I2 B/ Q8 n6 r9 p 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键' G3 O4 l! U4 i0 v, A1 ^- e
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
6 s1 m! i8 b9 k4 D |