此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。$ c7 c, b0 \" }! r
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
3 f: i4 e7 v% [' \! W3 c 方式一:
% b p! V2 U+ C6 O/ j. B2 O# [ j* ] 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,2 ]- J0 L ^1 R5 m( }4 D! r
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
$ `, d: M) z( a' |7 K. b l HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。" f$ a, b8 k* C9 \1 p* K
方式二:
2 g( n4 x+ ]+ t1 l 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
8 }5 T! S# Y3 N& L$ p! t SetTitleMatchMode RegEx/ r% c" L% U2 l
return1 F; Y4 \$ }- E
; Stuff to do when Windows Explorer is open
! i9 l. a6 x/ J, L8 m$ x/ R ;, F$ Z. g" x# j8 z1 \6 q
#IfWinActive ahk_class ExploreWClass|CabinetWClass ?! t$ T% f z3 o' i5 u& y/ g/ z
; open ‘cmd’ in the current directory* ^! v8 @+ p" U0 k9 W/ H
;
( ?9 ~ t% `; B8 ` #c::
/ Q1 [2 s @) |% S$ R OpenCmdInCurrent()
! }5 e! E! A! j return w/ O2 f$ O% F! ?
#IfWinActive
$ n4 `1 F7 u D4 K ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
, Y7 x5 f/ ?/ i8 @+ d4 y ; Note: expecting to be run when the active window is Explorer.
' Z" C8 W, |% n; @) @ ;! w* ~6 x/ @4 m( n
OpenCmdInCurrent()
0 X: N+ s0 i$ i, v4 K {3 Y+ d5 V' `' ]3 K, w
; This is required to get the full path of the file from the address bar
: V4 U$ D% I; L: P" Q WinGetText, full_path, A- {0 N/ X4 f9 m1 l- y; a' y* `' w( ?
; Split on newline (`n)
$ q! m+ P9 V* ]& h% l StringSplit, word_array, full_path, `n
- s5 V8 C# m( T% g& ] ; Take the first element from the array6 r& b% W+ `% i- ~6 v0 f3 X. H
full_path = %word_array1%+ z2 Z+ P- d3 y: Q- j* M/ ^. Q
; strip to bare address: e3 z) {: G* c( O, y: n2 `
full_path := RegExReplace(full_path, “地址: “, “”)
B. {1 |6 V, j) ~( Q( X- a ; Just in case – remove all carriage returns (`r)6 j& j7 K, A$ ^+ t# U( f
StringReplace, full_path, full_path, `r, , all2 l, K3 I8 s. ~! s7 E6 {! ^; m9 Z
IfInString full_path, \2 z+ t& e" N) E
{
, x' Z7 K1 N% `/ s$ [ Run, cmd /K cd /D “%full_path%”
' A0 o. w: y- @- C' ? }+ f5 x3 {5 f; d* K, n% t
else
* D0 ]' v7 z5 S/ V- N {4 i9 W$ s9 Q% i, m
Run, cmd /K cd /D “C:\ ”9 t2 e9 a: ~5 q' P+ p4 v$ D
}
$ p: N0 [8 r; C* V) X$ N }
! _1 X6 {2 |% {1 `( ? 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
5 F" l b! k( ?3 o 这段小代码肯能有两个你需要修改的地方
2 l$ I" g/ j! H2 o& V* m 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
( E$ ^. n! x6 x0 O P5 e9 S 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “% ]' T) h) J' Q% e" B( g
|