此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
z1 P; K& v9 L+ y. w* ~- s* L 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。' ^5 k3 h% ~& t+ H
方式一:/ n0 d/ G% m4 l. @: g" Y
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,) Z3 y8 W; G7 }# }& Y
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和( G) o$ r8 e" `6 R
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
# a7 O& E" D4 w 方式二:3 v+ i3 H+ T# J$ ^( a
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:5 O6 @+ v5 {9 W
SetTitleMatchMode RegEx
1 p* l; c4 J( d8 I5 c4 L return) X* [0 a( n. c* S+ q, k
; Stuff to do when Windows Explorer is open3 ? K s/ S. t! O/ b" p; x$ k
;
1 K$ x, B- ~1 w. B #IfWinActive ahk_class ExploreWClass|CabinetWClass
- s8 H- f4 x5 H' I; z: r: X7 E' l ; open ‘cmd’ in the current directory
7 N% _5 h0 _5 ~3 U+ s6 u# ^ ;' s; G- H* x" A! ]
#c::
/ l/ v3 P2 @1 k, Y$ r OpenCmdInCurrent()
: H2 O6 M& g0 Z2 g! ~ return
6 A( S; z3 R# g7 ?+ \1 a #IfWinActive2 |9 N8 u* H% f
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.( H: b5 A2 X. j3 k7 P) K
; Note: expecting to be run when the active window is Explorer.
, W# h% j0 ~/ K3 ~( } ;* b! z4 y0 b z
OpenCmdInCurrent()
; f3 ^) p1 |" E- v, R {
) \4 v: o1 q; z3 I, ] ; This is required to get the full path of the file from the address bar- b i" c6 B2 x G& r
WinGetText, full_path, A
' W& n' F, G* D ; Split on newline (`n)
6 ^5 k5 W& d u j- N# s5 ]0 z StringSplit, word_array, full_path, `n7 X" c3 v0 _( V2 b
; Take the first element from the array
9 l9 ^, X; Q4 J5 \( H6 ] full_path = %word_array1%
4 a" a0 X0 s; _# Y4 [ ; strip to bare address* M/ l/ k# z2 Q4 v
full_path := RegExReplace(full_path, “地址: “, “”)3 J5 `, B' m8 g8 w
; Just in case – remove all carriage returns (`r)
" y6 J; t& ^3 O( B) s! a StringReplace, full_path, full_path, `r, , all# x) F+ g6 s- B- p6 \5 a1 J2 W
IfInString full_path, \) }7 U4 [/ \1 D: S- I
{5 G" l: ]) }* T
Run, cmd /K cd /D “%full_path%”
% h2 Y% E7 e7 f3 r0 _5 R }3 d8 @+ a1 j& `1 t
else
# \# h" q/ }& Q6 W {& {- S) G4 {0 i
Run, cmd /K cd /D “C:\ ”! z& g) T# ^9 Z. c! x" X
}) M, I9 j! h9 |6 T1 w& R
}
5 t* o& t* \) m8 Z) S 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。' o$ |2 b8 `. Y# I2 M+ v
这段小代码肯能有两个你需要修改的地方
) G% O, W& D& b 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键5 F/ ?. e( T8 M" d: g! O
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “& L8 z$ v9 \. z
|