此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。. Z' O, e7 K( e) E. N m3 k6 o5 v
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
' ?+ _. C8 H! G! q- V k 方式一:
# f- e9 R5 ^# h: V2 x 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
: F! r* o0 U% h' B$ w& v& y 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
1 R6 m, t+ K8 ^- N9 X* L1 \ HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
. s* e! c* L& h, y3 ?. v 方式二: o# g7 L9 c- t3 y
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:$ b0 u# Q! Z) _ e' {
SetTitleMatchMode RegEx. n# a1 O8 Q2 A6 j4 T! ]( E, S
return
( t- t3 ^ m6 V9 [ ; Stuff to do when Windows Explorer is open
) e L! a/ ?$ P6 @% i" k! u ;: L( N3 U* |! c, _% h3 R/ \( H' u
#IfWinActive ahk_class ExploreWClass|CabinetWClass6 ?% f5 L i! S& \! [* q7 j
; open ‘cmd’ in the current directory
/ n3 f& j/ J- P& c6 W/ X ;# M* t5 P2 {6 C8 R3 z1 e
#c::7 `( i7 j5 P. G' @& I0 W: S
OpenCmdInCurrent()2 u& \3 f% C! K* t; R& {
return2 W( B Y! w4 t# ^1 g
#IfWinActive
% l! `6 H ~* J# l ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.( C; ]) t. E: b0 a& q( q
; Note: expecting to be run when the active window is Explorer.6 h$ L" m# l( D/ j; H; }' a
;
: O( e3 C! Q r- ?! R9 y+ d, W7 d OpenCmdInCurrent()
0 Q0 g# j* G0 S {
3 i. s x6 N, P7 H! W8 p2 U1 |# D ; This is required to get the full path of the file from the address bar
8 ?8 q1 E1 Q' c7 l7 E WinGetText, full_path, A/ _$ }7 d9 t$ S) q% Q* \9 A+ R$ k
; Split on newline (`n)
$ F* U& c4 _+ J- b9 z1 X) O StringSplit, word_array, full_path, `n
) ~8 N3 {% C7 H# k* \ ; Take the first element from the array+ B" ]- d! b8 `2 D1 H& U
full_path = %word_array1%2 C! T1 s) o3 a+ ^2 B
; strip to bare address
' | ]: P& D% O1 `' J) j: F full_path := RegExReplace(full_path, “地址: “, “”)' n$ z* A6 e1 k B: }; x
; Just in case – remove all carriage returns (`r)
' o2 f0 E3 y, j StringReplace, full_path, full_path, `r, , all+ r5 ^0 F5 b$ w; m/ e
IfInString full_path, \: [) C) c7 F; t
{
0 |1 k# `, h) q Run, cmd /K cd /D “%full_path%”
$ ^* K x0 Q( _, o9 A+ S9 {1 [ }
$ l* C" r2 E, L* X- V* H else& `" K u# \( l |
{
4 w) c+ I8 X6 A' @8 G1 p8 ~ Run, cmd /K cd /D “C:\ ”
# p. Z1 e! v$ z6 [ }
) D& W9 V/ ~* t$ [/ G3 v# k$ b9 O V }* O5 s* c6 s& d& p, g( T6 r. Y
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。8 K S% y. Z" U. E; D
这段小代码肯能有两个你需要修改的地方
; J4 H1 s. F3 v/ l- U: ?( _ 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
; b' n- U6 G, j; W. a$ ]- ~ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “9 M4 w. p+ O+ Q/ g2 U$ T
|