此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。4 N; h0 b* i) u" {- C9 f- T' R2 A+ S
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。2 t8 m: r6 M+ a% n) h
方式一:
1 n" B- h5 h: b7 c$ M( g& G 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,& g$ C: l0 @# k; `% n) j1 j. j: {
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和4 w" ^% y( q7 G0 u; t- i8 r3 d
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
& i* C! f; b7 i" E2 u% w* T% F 方式二:
z u$ j; H$ h( x3 P$ ]& Y7 R 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:. ^# ~; ?. y: a4 K6 k: C3 k' b7 m
SetTitleMatchMode RegEx
& P0 {2 b# y, `) L, o return! K% J) m2 q1 C% F- Z
; Stuff to do when Windows Explorer is open
' [1 z& h# t; {3 F* ~ G5 o ;
, K; m; K0 E- h. e, ] #IfWinActive ahk_class ExploreWClass|CabinetWClass: m/ y; X: t4 j: e! j
; open ‘cmd’ in the current directory: t2 f6 W7 j& K4 B3 _# N( Z3 Y/ P, N* _
;6 ~# V' G" [' T/ e- r
#c::
$ p+ W7 U' ]$ T8 H/ w. H1 W+ R ^ OpenCmdInCurrent()
J, z* a0 s/ _2 N, M return( @2 E& I( Q ?6 a
#IfWinActive
( d# [& c7 ]0 a O- N. M: @ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
1 ^3 ]9 O: `3 @4 F. f ; Note: expecting to be run when the active window is Explorer.
: D8 e+ } D6 q ;! H) o4 m& i4 @4 y% m
OpenCmdInCurrent()0 ~& C8 @1 Q7 D, | U! x: ^9 a' Y# R4 i G
{$ a- \8 e. q: J: F' \9 f% A
; This is required to get the full path of the file from the address bar
+ ^! c( O0 f9 ^! v; o$ N WinGetText, full_path, A0 S+ X' O7 \! A0 ]" I7 v
; Split on newline (`n)( {& I" a0 S$ A% B) t! ^
StringSplit, word_array, full_path, `n( E4 c8 F" s& l X4 B
; Take the first element from the array
' O9 {$ o: I B% T( ~( d( A full_path = %word_array1%1 H1 x$ p& G( {$ A1 x
; strip to bare address3 w8 d+ k! G" [% _/ w( H$ H. w2 x4 \
full_path := RegExReplace(full_path, “地址: “, “”)
4 x' o% P$ _! w O" Y8 I: y/ ~' ^ ; Just in case – remove all carriage returns (`r); U& J# ^1 H/ K
StringReplace, full_path, full_path, `r, , all
2 h5 i b3 F: }# }: v IfInString full_path, \4 u5 x" j# c: D( {, S
{$ g4 Y7 |% _# l, ]& ?
Run, cmd /K cd /D “%full_path%”
+ K* q, x( H0 M1 Z( _1 B }, A' T3 N& q7 w; k& W
else
! F9 |3 Y% { J q, k9 r, V {
3 ?1 S, Q* S% s* s5 G Run, cmd /K cd /D “C:\ ”
0 ]: W0 B' s- D }) R! x! I! R6 H5 c, b# h1 a; V
}
" v K. L: z0 t2 O' H$ t( ~ 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
/ y% L% ?. @# y. K2 ? 这段小代码肯能有两个你需要修改的地方/ K3 I, M) I2 s2 p; @6 x
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
0 }) c& {8 t$ W1 a! p) ~ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “- x; T1 N- t: S5 w$ Z- O5 L$ x
|