此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
! c9 |$ c" \( |: W9 T 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。8 c: g) f* d. D; y: z
方式一:/ O8 L. u6 j% N8 x7 u! m
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,1 n5 D: h( b# {6 J/ ]# [7 q6 u7 G
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和3 J F( h! ^- h6 u
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
7 h! y y$ `( y8 m 方式二:
7 `( N0 O; a' B, v* }/ k 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:+ O1 m& F) g V5 _6 N
SetTitleMatchMode RegEx
! i$ ?8 ?" j4 E. [ return
& v* f/ X+ n. E8 S' f+ s- Z, w0 U ; Stuff to do when Windows Explorer is open3 r' N! I. C+ z. P) |. O
;
8 U# M5 x, M; i+ `+ T #IfWinActive ahk_class ExploreWClass|CabinetWClass
' R- k* y1 p2 ?: ~8 H0 C& O ; open ‘cmd’ in the current directory
2 B/ p0 b, I5 ~/ Q8 ]4 H4 G- U6 W ;1 U& H( h! U% ^/ H. r
#c::% p1 \5 X. [* E; ]
OpenCmdInCurrent()3 q/ E w% e9 g3 A1 k
return
' l; W# F% N6 }0 e #IfWinActive. w& `8 k4 |# a# q' u
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.1 I# R( K/ Z1 D7 d. f6 V
; Note: expecting to be run when the active window is Explorer.
/ G5 s3 a6 \2 S1 | ;
5 O; }8 q6 Z7 }2 K; p OpenCmdInCurrent()/ t9 x8 U3 {/ t( `
{
9 Q0 f# F7 g8 g/ }8 g9 e) z ; This is required to get the full path of the file from the address bar
+ t3 K( P0 H6 U8 T- Z/ D, ~ WinGetText, full_path, A5 W" d' a {+ R {/ \' y0 \5 [7 g) {' V
; Split on newline (`n)
4 M. \: K0 `- y Y4 j i% G7 {7 j/ I2 ? StringSplit, word_array, full_path, `n9 w4 X4 O) } @ x8 W+ I) R ]
; Take the first element from the array
- t u+ F8 T6 v+ Z/ t' j8 ^ full_path = %word_array1%9 U5 Y$ ^/ _" h' C
; strip to bare address
. d: H( |# g4 V7 Y+ L full_path := RegExReplace(full_path, “地址: “, “”)
' A: ~: v: r( O% n ; Just in case – remove all carriage returns (`r)
7 V* P! R3 ^9 C) ?1 n StringReplace, full_path, full_path, `r, , all
4 y- g: B% c+ k) R IfInString full_path, \9 t& v# q: @' M' V4 R+ X* V
{' @# P% `; _9 I
Run, cmd /K cd /D “%full_path%”+ y0 \% z: b7 {# o
}6 T* }' F3 D9 m/ E) Y
else% s+ x" t0 r5 o* |. u
{
8 K X9 \7 V+ t6 w Run, cmd /K cd /D “C:\ ”
0 D* M" d* l2 ~, Q w }9 c& O( W3 w4 I, h8 @
}+ X* g/ N, V7 s0 V E
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
' v4 o/ W* y W& d' E 这段小代码肯能有两个你需要修改的地方
( i7 b* i* D% P+ l9 D2 M 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键$ d' u Y# E( n
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “/ P! L0 M# X: Q
|