此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。9 d( m' L: o& Q. X8 |! C, X
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。; @( @8 `5 x8 l: w: d6 F
方式一:8 [' o3 y% l! T6 Q
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
( S- V* z- [2 y 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
' z! S8 D) [- z$ l HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。: c6 @+ R7 x% T# y
方式二:
% U1 g- z" }4 @7 }. U 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
q# b: |% n: { SetTitleMatchMode RegEx8 F- J4 r( a/ a4 R: c4 B' V
return
. ?; S2 Z# [% R8 A ; Stuff to do when Windows Explorer is open
& [3 y+ @" B0 g ;
: x7 j. K, r1 ? #IfWinActive ahk_class ExploreWClass|CabinetWClass, [/ i G4 e; |3 P' Q! ~: W, p% E. D
; open ‘cmd’ in the current directory' X* J) w# Z9 e5 ^- @
;
8 A+ f% E: `7 y: L #c::
r0 s/ w7 n! f# g OpenCmdInCurrent(); J) C, L" ?7 |$ l
return1 I8 d; C1 S1 C' q2 }
#IfWinActive( O O4 A0 U* P# T8 ~' a
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
1 S8 ~' I7 T. O" x" \ ; Note: expecting to be run when the active window is Explorer./ R, A6 A, a" {- z& @5 v5 D+ k
;
( \7 j/ U4 ^, `7 G OpenCmdInCurrent()
$ S. h: n! ~. E4 c {
- Y1 _! {* k3 e$ W$ P ; This is required to get the full path of the file from the address bar' c. @% j b7 O2 i, A/ G3 h
WinGetText, full_path, A
! n6 ^- [' _) w5 Z3 r ; Split on newline (`n)
" z, [9 d) i+ y StringSplit, word_array, full_path, `n( I4 @' J. Q" S4 N
; Take the first element from the array
1 A! ^8 h: E2 y$ Y/ D# X full_path = %word_array1% c; c! C# [1 T
; strip to bare address3 U! R9 z" u8 e% S# h( m- L
full_path := RegExReplace(full_path, “地址: “, “”)
) r. H( b$ v* k1 _" |3 m ; Just in case – remove all carriage returns (`r)( R6 d5 W- v G' M6 o
StringReplace, full_path, full_path, `r, , all
6 o! K1 T6 E: f3 f IfInString full_path, \. y, W; _" i: L/ t* }$ @; G* | U
{
/ g. x. h( |) B% c Run, cmd /K cd /D “%full_path%”
- d- f7 L& w% }/ g; ^ }- O1 P# B7 {; b0 U9 f
else; x) _/ B1 t D6 p5 l
{
" R. Z5 N0 x8 [ S0 | Run, cmd /K cd /D “C:\ ”1 u- s5 b: H7 I& U
}( d- R3 J$ }! n( h! V
}
8 W5 Z2 i0 T) P 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。( x& `8 L/ X* P W$ ?: a+ L/ y
这段小代码肯能有两个你需要修改的地方; h; [# B3 `& I
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键 C. M( v1 \8 ^, u7 n9 `7 j7 B5 ]
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
2 \9 \/ [( w& h' s" d5 T- |/ M |