此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
# `7 T. j8 j' \1 X' m7 z C4 e 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
* y1 |. `9 C2 }- C* l1 Q0 ~" V/ F 方式一:
5 b0 G5 w! K% @6 D6 o. D8 j; ]/ ~ 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,1 m& p. m% W/ r
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
$ W. s# A& O; u% s+ f HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
+ E8 P$ m+ ], \8 n9 q 方式二:
' z- J+ b. Z7 ` 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:; \1 n$ E% l7 i* u4 ?$ V/ @
SetTitleMatchMode RegEx
6 D5 f( R8 C& \3 s+ O return
4 X7 ~; n1 m. d* J4 Q; w ; Stuff to do when Windows Explorer is open! q% m7 W: S+ I+ R; ^2 I3 g8 i! o
;
/ p- L5 v: N% e# B #IfWinActive ahk_class ExploreWClass|CabinetWClass
( L5 A/ B; K$ ]1 Z0 ` ; open ‘cmd’ in the current directory3 |; q" ~/ Q+ M# z4 q" N$ z+ n( U
;8 x- ]# ~% H& D4 y/ V! H
#c::
! w+ z( t7 D; K, z OpenCmdInCurrent()
3 f, ?6 B: T" q" g7 m, P- W4 i return: n( n5 h9 T S5 h0 @6 M V: h( v
#IfWinActive
% {$ g) l, T7 B+ [' F: e4 n2 @ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.0 w8 v) f6 G5 V: d8 Y/ w; I/ M) z- V
; Note: expecting to be run when the active window is Explorer.
9 Y1 J7 I1 V0 C `6 a ;2 [0 M5 F. f( S$ _1 Z
OpenCmdInCurrent()
: z% E `# b! f! D0 W) t. M4 ] {
- ^. I: j0 e9 o ; This is required to get the full path of the file from the address bar, v6 J9 X5 N2 Y7 a' N6 y" D+ N
WinGetText, full_path, A
! A! c' h; V2 f' d6 P c ; Split on newline (`n)2 y! S) a/ j% l$ Z# F5 o& F
StringSplit, word_array, full_path, `n
% `% `! m! j* e- F# c ; Take the first element from the array
- l1 x. w; i0 o% Y" x full_path = %word_array1%4 B) j. m7 `# D v1 a6 Q( _
; strip to bare address
; j9 d3 r6 `7 |" e! X6 n# c, t# n full_path := RegExReplace(full_path, “地址: “, “”)
2 e8 [* t% r% ? ; Just in case – remove all carriage returns (`r)1 e6 N5 L O2 K- ~+ W
StringReplace, full_path, full_path, `r, , all# [# N( J8 t% Z+ d/ c" `% x
IfInString full_path, \: s) V; G1 V2 K; E% c$ x' t! z7 `# f
{% m+ A6 I2 c$ Y8 n% j
Run, cmd /K cd /D “%full_path%”
" R- B6 k, O9 m' S+ F5 z }
% b8 s4 l+ `' T" v: J ?+ C! _ else
K; O- ]' `( Y, p+ b' M; ?% \ {
9 X6 i" S( t# O Run, cmd /K cd /D “C:\ ”. F4 p4 S0 ^/ [: j0 f% r) P
}
. \! \6 V6 b1 H6 o }" L- r# S" V+ ~7 v- w/ f7 x
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
' |/ n, U. T: \0 h$ ~ 这段小代码肯能有两个你需要修改的地方4 D' a, n4 q, v0 i F
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键: v9 C( I) ^7 r% \, M
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “- t. ^' t0 R. |' f; I5 X& K
|