此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
, \% D" u8 P1 |3 a 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。1 b; w% m5 y7 T
方式一:; n# c; O$ h$ y+ d* X
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
3 Z) \5 E0 p3 j* Z. f- k D 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和# z- l; @% m7 t0 q+ x+ d! i
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。3 E1 W& e9 G( ?% F; \- t
方式二:* X! Q( S' E# \; }4 j) U
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
5 J( U$ m( K0 y/ q. r' f SetTitleMatchMode RegEx2 h/ o# ~% j2 r" ?
return# u+ n8 R& p5 [! Y. E1 `9 r
; Stuff to do when Windows Explorer is open
( h0 F$ l. T/ a5 l6 d ;
/ [, p8 s6 u; W* n& l* \ #IfWinActive ahk_class ExploreWClass|CabinetWClass, ~# Y# m% x7 B( D+ i
; open ‘cmd’ in the current directory* `# v7 Z5 C" {$ n" c! M5 ?
; a7 Z3 G) Y0 \6 M
#c::7 w- @5 M9 E8 m6 P. o3 k
OpenCmdInCurrent()# s+ B, O. ]8 t4 N+ o
return
( | i1 g$ ]; ~+ k* d #IfWinActive0 X( n8 Q& G5 D0 }* ~0 {+ o: T
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
9 b T6 n+ t/ M$ d3 i) I/ n7 Z0 _ ; Note: expecting to be run when the active window is Explorer.( t4 T/ R( U" h' I
;/ [6 a1 I" K- C5 N1 U, w; F
OpenCmdInCurrent()
a. R3 c0 C3 r" J9 i* f {( _( g0 h+ U( ^9 Y
; This is required to get the full path of the file from the address bar
0 w1 y$ Z3 K" q. _5 V& `6 V WinGetText, full_path, A
) q1 O8 A- b* S1 Y ; Split on newline (`n)
7 l* [9 A. O) C' H6 t# x StringSplit, word_array, full_path, `n
& C2 `: M5 E# F ; Take the first element from the array: }+ e: v- E* w# i
full_path = %word_array1%4 F8 W/ [; X3 k% E4 N
; strip to bare address% K" ?$ f3 K2 Z8 I" E
full_path := RegExReplace(full_path, “地址: “, “”)% j5 V' h* M" `
; Just in case – remove all carriage returns (`r)
8 w# ]4 {4 t- h8 N7 U StringReplace, full_path, full_path, `r, , all; z& H/ o% q* j3 I9 Q0 x
IfInString full_path, \" E: K: {& I3 Y7 E" a Q. n
{
0 J8 M* n; f1 a& K' [+ h Run, cmd /K cd /D “%full_path%”+ g6 S; B4 K; e* G; O0 h' I
}& J& K1 b" P' \9 `
else- { k0 p( Y3 J6 m$ _8 N6 o$ l U. k
{
- S3 K) C. s4 y7 k Run, cmd /K cd /D “C:\ ”& E4 o; P( F y& q, m) u
}
4 Q7 N3 }$ a/ j1 n }
; |: N% @0 {) N" f2 Y 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
' q' v% W$ v; `+ X/ i 这段小代码肯能有两个你需要修改的地方. T" o2 f) q% T% g# v4 F% Z
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
: `7 u0 Z8 a) X0 } 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “1 C/ S6 B6 `. ^3 E
|