此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。% v$ w. A# L/ _ D& s G
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
+ c, w; B3 O1 P9 W# L7 a \ 方式一:, r' \: n: {9 U
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,8 g) `7 ]# v( x( x& V' R
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和0 T0 r1 |. e, H. ~
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
9 }1 P w C: V# B 方式二:
/ n. i, s' a' ]0 V 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
3 @$ z7 M4 R" A9 z) H- Q/ n SetTitleMatchMode RegEx8 j# R, Q/ e+ ^) |
return. s/ Z2 B: z, j, A# H5 U/ _
; Stuff to do when Windows Explorer is open7 c( [, R Y& C$ H
;
# I4 b" z: L! T- @$ c #IfWinActive ahk_class ExploreWClass|CabinetWClass9 R" G/ G% F1 [' U- }5 N T6 x3 d
; open ‘cmd’ in the current directory5 r5 U0 V* m) t8 U
;& Z2 E6 i' S& ~& i' ^5 v
#c::8 d: Y( t, n0 k7 m$ T/ g+ I
OpenCmdInCurrent()
0 s+ l8 W9 t" A1 U return
: y" a( d$ _3 d7 G% D9 f #IfWinActive
2 K% k- y' Y7 l; D6 C) I ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.: o1 c3 Q( l0 `
; Note: expecting to be run when the active window is Explorer.
9 F! y: `/ ?& d$ a- f! E ;
$ J( _/ Z1 M# \3 h( O0 ^ OpenCmdInCurrent()
0 n j; r0 X& T3 R5 Z3 G$ m {
2 c, o, l0 a9 q4 @- I ; This is required to get the full path of the file from the address bar
& L& |5 V' |5 ?0 ` T4 t WinGetText, full_path, A
, [2 d1 I6 T$ T T5 {1 l6 y ; Split on newline (`n)7 X3 i: [: R8 \( G) Z; }4 ?# q
StringSplit, word_array, full_path, `n6 }7 o7 L7 ~& `
; Take the first element from the array
4 |( W+ _- X9 ^" @+ H; H9 e full_path = %word_array1%* o4 V9 ~+ |6 H5 B7 |) u. {
; strip to bare address& h& c" Z( Q; {" J# I; @
full_path := RegExReplace(full_path, “地址: “, “”)
3 g7 N' W: p1 w- ~# _" K7 C3 m ; Just in case – remove all carriage returns (`r)2 M: T& F" f. A
StringReplace, full_path, full_path, `r, , all. f* M2 I1 t9 ^, _% [
IfInString full_path, \
7 Y0 I( s: t D( O) A {" x( g6 L. |7 ^
Run, cmd /K cd /D “%full_path%”
& O$ F4 {" A- [& N b }
3 j$ u) y) Q6 l+ \7 u. | else5 M$ `; J4 Z* {, t9 V/ C
{. k7 {8 x0 E* y6 k
Run, cmd /K cd /D “C:\ ”9 K3 P5 I4 f9 q# r1 ^7 I. d
}# ^. X) Y, x, |& N4 R, H6 h
}" y8 C/ L, W# d$ ?" E7 D
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。& R# K+ j# ~% e7 u' `9 q1 }( B/ R
这段小代码肯能有两个你需要修改的地方: V0 y( F6 `9 E6 g2 t/ |
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键2 S% H# L& J+ l: q! P
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “( T- J7 Y, P# y
|