此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。7 v4 t* |% q# ^
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
& ~& d9 u9 G, E* T3 E3 |2 s7 } 方式一:
+ G: m( V4 [) R: _2 x" Q 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
) e6 O9 N- I6 c2 `9 |8 J' |6 q 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
+ M7 L- A4 m& t3 O# v& i' ~ HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
- d, h- H& N( v! h; W4 h 方式二:
) j* x$ C ], C" F3 f1 ~ N 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
' Q( B/ f3 ~' o% ? SetTitleMatchMode RegEx" C1 u. m) w( Z0 V2 @, G& `" h4 K
return
T) C/ R1 D: n8 B/ h( `, O$ e ; Stuff to do when Windows Explorer is open$ o3 s k4 ~: U1 m# y
;% K, j7 _( V/ E3 |1 h4 k" x
#IfWinActive ahk_class ExploreWClass|CabinetWClass. S) P( n1 w @+ x
; open ‘cmd’ in the current directory' U2 R j1 ^2 C& d) G7 i( ?8 m E- `
;0 d, Y1 X& T: b" n) o! w4 ]2 c0 r
#c::: k1 I& m. Y5 Q0 O
OpenCmdInCurrent()% I6 |' J. d2 p
return
[8 ?2 { a! q! K7 R% X #IfWinActive4 f) ^1 E; |1 m4 `% a9 Z' n
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.; B# d9 a( V) O( _5 T$ @) j% X! u
; Note: expecting to be run when the active window is Explorer.1 e c" p, z8 A
;
0 f, H$ {0 }$ {- K) g% k" E OpenCmdInCurrent()
: R5 r! r) P" A2 c {0 M4 q& d- E1 c, I( _9 s
; This is required to get the full path of the file from the address bar0 I# I: L7 M) i; B! B. d0 Q/ F
WinGetText, full_path, A* I% }, V( o4 k
; Split on newline (`n)6 p0 ~: B3 d- g+ X2 p) H
StringSplit, word_array, full_path, `n
: \% P" U+ D& _) n ; Take the first element from the array
9 x1 j& V( p: h full_path = %word_array1%5 S6 \% T. I, k0 v
; strip to bare address3 W" Y0 ^8 }. ~ H; I
full_path := RegExReplace(full_path, “地址: “, “”)8 b0 p. f, H1 m% b8 D$ J
; Just in case – remove all carriage returns (`r)
, \8 T# A2 `4 \9 ?) d StringReplace, full_path, full_path, `r, , all/ u7 H& K9 i% O& Y" @0 a2 O
IfInString full_path, \1 f) a$ F7 [: M b) W' q8 F
{
4 n! t9 f* r% l% J6 _6 U. u Run, cmd /K cd /D “%full_path%” W Q: Y5 w( t4 R; H7 F$ |
}
/ \+ w/ x! ]' E4 B' Q3 @/ Y/ g else
! l. t1 H$ T6 ~3 y# r- i$ b { |! x+ K- Y: o9 X: n3 J
Run, cmd /K cd /D “C:\ ”
0 `! F) i1 @' f. z. ] } N& u& s9 K' v5 z
}2 Y, {' n/ y! h; V8 ?8 Y
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。1 X( q& g- t! R: b7 d: r
这段小代码肯能有两个你需要修改的地方* I( Z+ t* R) Q
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
/ }- K! e& J2 t, j$ p) g 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
, G: m+ m* x% u O. v5 I |