此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
, s6 `8 ^3 ^7 L" p ]$ x8 X 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
3 T. P% A, q k* ^ 方式一:$ j; ]) v2 d5 ]8 V
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
# u( ~5 T' K8 v& s1 m' _8 J @ 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和1 c. M# e/ T I, ]0 ]
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。% w7 }6 n$ i% A) ]
方式二:
, Z8 F% E- R- d4 U+ g 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
8 I' i( r' _% m, G( L) y' M SetTitleMatchMode RegEx
1 w) l+ q' ~6 Z- M return3 k6 P0 B/ M! {" g* y; c7 o# J
; Stuff to do when Windows Explorer is open3 Q/ P( G9 t Y; J
;* V/ Y; p4 t; E
#IfWinActive ahk_class ExploreWClass|CabinetWClass; x3 s7 @; k6 q$ e
; open ‘cmd’ in the current directory
( C* J L! [4 I& n ;5 s# L8 E) d5 U$ \
#c::# Q! |) ^; X8 s4 O
OpenCmdInCurrent()' |, l* n, p9 U/ G1 z
return# l# P+ d# J" U" C8 p$ ?1 `! g) Y
#IfWinActive. @& T8 ]/ t+ Z8 C d& }7 y; W
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
: K, [! J3 T. g8 o ; Note: expecting to be run when the active window is Explorer.
0 q& T+ B6 h( _0 @5 ]0 n ;
0 @: R) ^! x( i7 i( @) P C OpenCmdInCurrent()
! v7 `/ L, @4 S& C4 F { F" K' m/ K4 {; Y% P7 m
; This is required to get the full path of the file from the address bar
' d) b& [$ V: p2 Z WinGetText, full_path, A. e W' _9 j$ {% a9 x. C- B5 }
; Split on newline (`n)% ?" `1 S) F. Q( E- k X7 X
StringSplit, word_array, full_path, `n6 f$ S) @# J$ b8 \: A
; Take the first element from the array
; P3 ~ B; O0 V/ T full_path = %word_array1%
( N) V& H- L1 V- p5 ?8 \3 N( P ; strip to bare address
6 }3 {% s4 W2 J* D full_path := RegExReplace(full_path, “地址: “, “”)4 Y2 t; l# ?$ a/ n" A1 p4 s
; Just in case – remove all carriage returns (`r): L" a D4 S# B+ q
StringReplace, full_path, full_path, `r, , all
: E7 R7 w7 u; R, b) o; k/ N: O IfInString full_path, \* y: C& t1 e: X5 @2 ]1 H) i( q9 g
{
) V$ p5 x2 m' L7 n& j' [% l; v Run, cmd /K cd /D “%full_path%”) m" m( \' V- r) l% C
}
s$ b3 \# K" N! o else& q; c" t% m3 K9 m+ }3 i# l
{
7 P2 B1 C+ c+ A) g5 n! | Run, cmd /K cd /D “C:\ ”
7 J! P% Y& `3 L! ~/ G) `4 R& }' d }6 c# w, y: Z' E, t+ i" `
}
* a6 G" N1 ~' K7 |& {3 P) Q 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。$ i9 `3 E: h/ S& J! T/ |
这段小代码肯能有两个你需要修改的地方/ T8 n4 {; _! Q. }
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键: u9 m8 r9 B2 g+ l3 R, l
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
$ o0 o+ v# S6 ~# N/ q+ q m& ^ |