此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。 s, d$ U, P, J; d# x
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
, e$ K8 m) W+ Q/ F0 f4 c) y/ J: n 方式一:
" p1 t" U, a% R* P6 p6 [ 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,: G0 \; ~3 ^# O, W' ^) p2 Y
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
. v0 Q' `; l1 ^3 n HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
4 w/ [/ x; J# M1 g( }, D 方式二:9 K! i3 t* J# F3 a! i: P8 h
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
; U2 w* Q6 v r7 W# t" I" _5 D SetTitleMatchMode RegEx
; h& R4 a! ^! r1 I# R+ X return
: n+ ~" O( @# ~3 i- y* E ; Stuff to do when Windows Explorer is open8 W4 h+ [% O4 \" A% a1 ~5 H) }
;
- o1 M( B* E3 y/ o$ | #IfWinActive ahk_class ExploreWClass|CabinetWClass3 c$ O4 G6 g5 i0 a4 k
; open ‘cmd’ in the current directory
8 V! L7 ~- w3 M0 v- N6 _( Q ;8 l6 ?. } Q; k% t- c, o: H* d
#c:: V3 q3 c2 I! A- o
OpenCmdInCurrent()
8 r" y" G5 s# u& L* m return& c$ e6 N7 I( M
#IfWinActive0 L4 T6 n% k! x9 b
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
2 b' V4 E' D2 P ; Note: expecting to be run when the active window is Explorer.
; u) ^/ I6 y! }" L1 O ;7 e' n8 C6 K0 W0 S. q7 ]
OpenCmdInCurrent()
- Z7 g# G6 h, f {
' J2 a- U! g. R/ R2 M; F& R ; This is required to get the full path of the file from the address bar1 c% D' u; u# a& [
WinGetText, full_path, A! T$ U2 H, _- P: }
; Split on newline (`n)
6 H; |, u/ G1 t; `* p9 V" W StringSplit, word_array, full_path, `n' m* z7 q5 t( c s
; Take the first element from the array
5 Q& H8 u% R5 `4 O full_path = %word_array1%
! z- e4 i+ I2 A% F# \4 n5 I ; strip to bare address8 Z' k' W& v% e% l; C
full_path := RegExReplace(full_path, “地址: “, “”)7 E4 ~, b2 L$ ]; ?, Y8 x
; Just in case – remove all carriage returns (`r)
) B1 U4 C9 u5 Q n' X8 G4 e StringReplace, full_path, full_path, `r, , all, n5 m& U1 `* o1 R' z3 E& X
IfInString full_path, \
' s8 b0 w* i `3 L {
3 d5 k# Y9 L+ e Run, cmd /K cd /D “%full_path%”, C) W8 d! }, E
}
' k, C2 Q7 R/ P3 y4 V7 f2 w else9 h( A$ P' ~. r
{' F; K* |5 F7 f" D7 ?+ k
Run, cmd /K cd /D “C:\ ”
* c8 U+ T: l/ p8 P5 G: k7 | }+ D+ a' ~- o' A$ n' |1 Z; K. V
}
7 A+ `5 S5 \- D+ b; H N" ] x 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。 C E. q8 i' g6 ~! w' C
这段小代码肯能有两个你需要修改的地方
j$ d; D% j3 P, S6 g7 F, f1 i 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
0 |" ]3 u) L( r& z! H: _! M7 Q2 F 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “, D+ A5 o9 U2 E4 v6 J, t
|