此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
: Z+ V9 ]* ~" O3 `% B 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。2 r, Y4 O1 |+ A% [( ^+ O
方式一:
- `: O/ u0 W( R2 }9 X2 b1 H3 ] 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,/ ]; u0 O( h u6 S" `
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和$ {, i) A6 k# B1 A
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。, A a4 [, N, k9 G# Y
方式二:
* p! J1 x7 a+ t$ N' V" d; N 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:9 s- n# J; T7 `! N; {
SetTitleMatchMode RegEx3 [2 b. L* o9 f6 u0 G8 S7 q
return
4 @0 q2 M! i' F ; Stuff to do when Windows Explorer is open9 G# y9 S; _+ G9 W' m k/ Q; G1 F
;
$ H& C) T8 D1 Q' z #IfWinActive ahk_class ExploreWClass|CabinetWClass5 J3 J% u& @6 m) c# x
; open ‘cmd’ in the current directory- _( ^2 V$ h& B1 s. ^
;
e2 `/ G+ Q( w4 N, F# r #c::' k+ z( O A! f0 c: e+ d! L
OpenCmdInCurrent()
! f0 g7 ^5 a4 J* ~) J7 A return. b: b/ B) U, N/ I2 _
#IfWinActive
- |/ {/ l8 q. n9 Z ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.' L/ W$ N/ y. p8 H" ?
; Note: expecting to be run when the active window is Explorer.( \5 x) S H# I0 i2 A- F4 ^
;& @- s [1 R$ D
OpenCmdInCurrent()
# U0 M7 p T7 H. @! h/ I {" r' m0 c, B; J9 b
; This is required to get the full path of the file from the address bar6 K3 Y' z/ s' s7 a' m$ D
WinGetText, full_path, A5 p1 Y' T% R$ h
; Split on newline (`n)
# V$ O" v5 R; K& }: A4 z# { StringSplit, word_array, full_path, `n4 s6 m/ Y" b# a
; Take the first element from the array
+ y3 [" P2 |; h! F3 k8 `) F! G$ D full_path = %word_array1%; u. |/ N5 i) g H
; strip to bare address
. I7 }) o9 o7 G9 [& o1 o full_path := RegExReplace(full_path, “地址: “, “”)
$ k; _& q4 J% a3 e ; Just in case – remove all carriage returns (`r)
0 |- f/ V- v* n( ~* y0 v. m StringReplace, full_path, full_path, `r, , all
+ O& N/ c' y& ?2 J; t# O# E J IfInString full_path, \% P2 J! R/ \4 v1 R( \
{) [0 N, ]; @/ I4 q y
Run, cmd /K cd /D “%full_path%”- W; d# i- G# P+ ]. q/ F
}
: l2 L$ R& n! m' D8 s. f/ h else
" |; L r, m( d& e {
8 Q2 U; ^ B9 c! [1 e Run, cmd /K cd /D “C:\ ”
0 ~4 j+ G3 f3 }# L; y9 U; c }( V( U$ t" A& s- e2 ?- D
}6 [: `+ i6 [2 `8 A
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
7 f; h/ z, B6 h/ o. G- y4 ]( B 这段小代码肯能有两个你需要修改的地方 D! r, O& j7 r
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
* e5 v* B4 p* k4 J 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “% N! Q- G4 k# L% g' Q
|