此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。$ z( G! o, k/ [ c) P/ D% @2 [7 _
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
$ x3 h3 c: m+ _7 S3 x 方式一:
# z6 t8 q! ?. E* V9 E% _5 y. b 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,9 n0 p- n$ }6 E- I1 C
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和4 |# B$ l& y3 y: E% n9 G
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。2 p) ]1 {3 i0 w! i4 O# q
方式二:
- ]- p. j% u) x) v' H1 @; H7 l( x 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:# l. }' a$ o+ d* s
SetTitleMatchMode RegEx# |$ C% p0 Z5 _6 \7 d e2 a7 D
return
2 k o7 p* S6 r2 ] ; Stuff to do when Windows Explorer is open' P3 F3 ?% v7 H8 g |: `' z4 j, U+ J8 V- n
;
- P, G T8 S0 Z, d# l+ g #IfWinActive ahk_class ExploreWClass|CabinetWClass% {, x \9 P! W! E( s" y
; open ‘cmd’ in the current directory
p# h7 i& m- U! f ;7 ]! i, J, R2 ^6 U# s* m4 n3 a
#c::. p: |$ B( C( I& w x
OpenCmdInCurrent()
7 L7 ?: q0 \1 d: m8 }! ]) S$ ^: W return* s7 [# j1 s8 ~7 o
#IfWinActive
. P2 } b7 M7 W5 G, I3 X ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
* h6 F/ E6 c1 h# _6 ~& N9 F ; Note: expecting to be run when the active window is Explorer." F# ^8 o2 n0 ]2 v9 p/ _
;$ j; ~7 A. U3 Q J5 i+ u
OpenCmdInCurrent()1 X6 i- c; T0 d" a& L9 ]. b2 E
{: y3 U- U k# n' e% J
; This is required to get the full path of the file from the address bar
; T. y6 H+ o# w5 n6 r8 c8 C* _ WinGetText, full_path, A
6 ~7 a S- k b" E- n% K7 d ; Split on newline (`n)
: a9 ]! I: _- C- d StringSplit, word_array, full_path, `n5 G p* i3 f0 |/ b
; Take the first element from the array! |. k- v# V" P, R, \; {1 K7 K* L; r& N
full_path = %word_array1%
8 k0 u; m9 r$ f& B) x, v ; strip to bare address9 V6 r$ |% m0 G" W2 r
full_path := RegExReplace(full_path, “地址: “, “”)
* y# B5 K7 t& p' Y1 ~+ Z/ w ; Just in case – remove all carriage returns (`r); ^( }& R+ G% V- j
StringReplace, full_path, full_path, `r, , all4 H9 |8 ^, B0 m8 ?+ u. {
IfInString full_path, \
7 E2 V' b0 K" w: L2 M5 \ Z {
X' M* o1 b1 y2 S7 B4 ? Run, cmd /K cd /D “%full_path%”
) S( L: M( u/ v# h: ^ }
$ f' t( E8 a7 `: F1 [$ d: f$ C else- z# @( [! _+ Q: c. p/ n; g
{/ a. Z" N% W* {. n
Run, cmd /K cd /D “C:\ ”
5 E/ b1 F# q" X6 Q1 D( b2 P }, x" W0 I9 C4 q+ t H% F
}
( I& Y2 h+ I0 ]; L+ u 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。1 d$ H0 J' a" b! {6 l- A- o8 \
这段小代码肯能有两个你需要修改的地方1 x' M' T: i& P/ i- k. s
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
) T$ e% o) k0 k- h. ]- E7 y 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “+ o( G" c: N5 m
|