此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
5 |! f0 M' P. t 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。3 G* Z7 ~" \% \4 S- f9 G
方式一:) U* D* E" N, T$ p, ^4 w6 T
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,- [, j U" {, g' ]
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
0 @ B5 |, t+ ~# G6 o+ } HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
- V- v! M. b' _) z 方式二:: p2 [7 e* L% }! B6 ?
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:: g% V p, n3 m% L
SetTitleMatchMode RegEx
3 n4 p7 P, L d6 N, \4 T return
, L* a6 ^: |3 y, Y( ]4 G% m ; Stuff to do when Windows Explorer is open
0 z! ^# T& G4 \& \ ;
[5 ^5 ]( Q! @* j; {0 Q/ o #IfWinActive ahk_class ExploreWClass|CabinetWClass- p/ {" D5 i* Q* G# b) z( H: T* T
; open ‘cmd’ in the current directory
( o( S# Z# s9 E ;2 d4 h, _; w: \) a
#c::3 }1 c* z! a' n1 P7 ~5 B
OpenCmdInCurrent()/ z! R' n( X P& X8 @
return2 M/ r: U S1 n/ t* M/ N
#IfWinActive2 S& v) ]: o6 ~/ ]1 ]
; Opens the command shell ‘cmd’ in the directory browsed in Explorer. `- C6 J7 z' }+ C! s6 j% p
; Note: expecting to be run when the active window is Explorer.; f& J* g- W: A/ E0 h0 k$ w% G P# b* m
;
Z2 b, }" y. o* e2 Q$ l OpenCmdInCurrent()6 s5 R+ @( h2 T* {9 E2 e2 _
{6 |& w! g0 w: v' y" y
; This is required to get the full path of the file from the address bar
e8 H! e' t6 b" y. V- ^ WinGetText, full_path, A' i" s* q9 {% I B. |0 P. v3 C
; Split on newline (`n)
% D' F# E% f' Z7 _! E9 Y# O: W' \1 A StringSplit, word_array, full_path, `n: N L9 F M# o4 Q( J, S2 J/ u* I
; Take the first element from the array
4 P/ E+ G+ f' r2 j full_path = %word_array1%5 t9 k9 H7 w9 F4 g! D; S
; strip to bare address7 E2 s& ~$ {$ s p5 i9 t4 a; C& z6 M
full_path := RegExReplace(full_path, “地址: “, “”)4 a; Q% ]! P! q5 D9 p7 E
; Just in case – remove all carriage returns (`r)
& s% P5 K& x& Y6 L1 j StringReplace, full_path, full_path, `r, , all
^$ F, U9 w+ \1 E* ]( Z+ x IfInString full_path, \; v4 A% {4 y0 g0 i. C4 u
{
+ V1 V) t% G, y Run, cmd /K cd /D “%full_path%”
: \& w& H0 [2 S: n. _ }* `3 p6 C, H: q. T! u$ c
else
/ M: o) X. a4 u3 l1 H& k/ x' z { ^9 n" C0 l% k8 z
Run, cmd /K cd /D “C:\ ”. c) I7 X- B8 a# Q3 S; t
}( q- J j# U# N. x7 n
}0 C; _, ?& c) c2 T/ k& P: o+ H; p
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。% f. | Q4 `5 K- @& x
这段小代码肯能有两个你需要修改的地方, Y- K7 @1 f( ~ ]3 W/ E& c0 G" w
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键" p1 W K' C/ R4 k, q; `
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
, t9 }9 A2 i5 p8 C3 Y |