此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
/ }3 a% ]* m( i 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。0 I. A; \$ y- \* ~, u" N9 W
方式一:
/ F7 B# v- n F) C. Y* H: }% r 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
# X8 F3 a1 w% e2 z: h) x 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和: l% |: n6 @. A
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
, G, r( |- U' c 方式二:
& h+ }0 H- C( Y6 I 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:& t M8 f; E$ K" x* U* s( q5 y
SetTitleMatchMode RegEx
1 T+ t$ K3 p3 L. i return+ ]1 u; x/ l# D% d1 f
; Stuff to do when Windows Explorer is open g! }3 H l9 x y9 t3 _
; }1 A4 K$ M0 ?' A8 z5 P0 n
#IfWinActive ahk_class ExploreWClass|CabinetWClass
; X+ S' e' i* ]. `9 [ ; open ‘cmd’ in the current directory# q6 `& [- D4 [" v9 Q" O6 M, _
;2 h4 ^6 k8 s u
#c::* `/ G' Y" Q( Y1 N9 z/ O
OpenCmdInCurrent()% q- G2 O; O; V" v$ Z
return9 B. [( Q: m& W5 ^
#IfWinActive
! E8 {) B9 l6 u' V, J; } ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.: l" P. Q- X9 h1 O L
; Note: expecting to be run when the active window is Explorer.- @, y. h+ ]: ]: c+ {$ ?
;
4 Q/ x# [8 g T+ f5 B" t7 w0 E OpenCmdInCurrent()
) r0 V' E* M7 }# N {9 S6 j- Q U/ q* a' H
; This is required to get the full path of the file from the address bar; N* e% w( v" ] j# `
WinGetText, full_path, A" j( o& G6 o, \9 ~
; Split on newline (`n)
5 M: P' _ s6 ]/ m7 q/ e8 O8 y& y StringSplit, word_array, full_path, `n8 Q3 x* k6 i1 p: c& v( q
; Take the first element from the array
* p6 y5 n1 j2 W full_path = %word_array1%! e3 C4 L+ C+ v6 l5 i* x
; strip to bare address
; I) _8 A5 _$ h( C/ z9 r5 T full_path := RegExReplace(full_path, “地址: “, “”)
1 j$ M2 ]( t$ b7 e/ w ; Just in case – remove all carriage returns (`r)0 Z0 z! I& _# e
StringReplace, full_path, full_path, `r, , all q5 G* m) u; i8 x* }: L
IfInString full_path, \
$ P: l" I" w3 l9 ?6 c) D: Q {& K/ o# j- C, _( V
Run, cmd /K cd /D “%full_path%”
% V( a4 o) C3 Q- f8 e5 K }* t: e4 ]: H- O) Z- M7 ?
else$ D9 U7 v( g4 y. J6 `; F
{6 Q6 L+ h. s% n
Run, cmd /K cd /D “C:\ ” ]1 N! L/ \4 U7 q+ \1 N# E3 C. d
}+ R2 c; w7 z9 l+ n$ R0 f: _
}5 {! V/ |0 E: u* K0 a9 K0 p$ y
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。0 l# |9 N% z) i
这段小代码肯能有两个你需要修改的地方* [! i( u% c7 c+ ^
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键4 N! `. o* \5 p) S6 v) N- L. G8 c& V
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
' M. N/ L. t5 S |