此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
3 k/ x% m# K2 Z0 |+ @7 o& E 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。1 _6 X7 e7 j2 [) C
方式一:& J, P9 J. ^. k6 j: V, S& ?) d# o
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,* H K- `6 B/ _2 A2 j8 b
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
8 |& s' p' S, F2 } I1 | HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。3 U4 E: d! x1 i5 ?& b5 ?
方式二:
' E" c b4 r1 j- B! f; x 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:5 s8 y+ G6 X+ c- U: | G7 }7 z
SetTitleMatchMode RegEx
$ m& C D* F/ Z. O! R return
+ _7 M% G, R% Q& ^ ; Stuff to do when Windows Explorer is open; l. g# S3 _' Q
;
- g; c/ n- L( s" o; r% Z' v- r #IfWinActive ahk_class ExploreWClass|CabinetWClass( K6 |, {! F0 d
; open ‘cmd’ in the current directory
/ o. l1 Z+ k1 k ;
2 X1 B- x7 }! e" d( B- V #c::
$ l( W- B0 K7 n: N }) N OpenCmdInCurrent(); t0 T. j& j/ @ J4 L5 b
return
' T! I7 j+ s: ~ #IfWinActive- ]/ n0 r ~8 E1 x" u3 G3 w) G
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
, ~8 o& _. v& X' N7 F ; Note: expecting to be run when the active window is Explorer.# C- {5 [* e% a( ]$ E% }" ~: Z
;& B6 j! |% S# J: p4 E; n/ g2 r
OpenCmdInCurrent()+ i8 k2 u8 F: H5 O7 C4 t$ P5 |4 h( _
{
' f2 l4 g5 ]; }8 e8 `7 T5 W3 I ; This is required to get the full path of the file from the address bar
( C, ^9 W- ]" \3 k WinGetText, full_path, A4 {. O; [+ P* k! z# A8 Y8 V
; Split on newline (`n)
/ z7 M I2 z# ]3 u9 M StringSplit, word_array, full_path, `n
4 T% B0 W. X, D% A# @( C ; Take the first element from the array& m2 n1 A6 F3 u, s% u9 F
full_path = %word_array1%
2 ] a3 D* g4 ~& n ; strip to bare address
9 J; r0 V( }5 { full_path := RegExReplace(full_path, “地址: “, “”)! V# U1 P, Z& c) q9 I* B: a
; Just in case – remove all carriage returns (`r)0 d7 ?, r. u. L+ v5 |7 f
StringReplace, full_path, full_path, `r, , all+ m5 L ^# ^, w9 G/ R
IfInString full_path, \
5 Y8 v7 h2 x8 L {: v+ s& G0 b' S4 ]6 I5 p
Run, cmd /K cd /D “%full_path%”) h! O) M$ w& w. A
}. B# {" p3 E8 |0 T! [
else
7 y8 {0 u H9 u V+ b {# @2 `8 y5 n( M$ N$ ` D5 R
Run, cmd /K cd /D “C:\ ”7 R4 [8 Y" F+ O. c Q( P
}! g, k2 K P& L9 h/ h) g
}6 v% q2 w$ Y" X t( F2 \
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。! T1 `# w) w4 j5 `
这段小代码肯能有两个你需要修改的地方
( K) r. q. k4 S 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
' P" B; A, Q" t9 t 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “9 V( s+ x) Z$ K9 A* P, F# M
|