此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。3 K! d+ b- O c7 a5 \9 b) V
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
; M; A3 O$ L/ Q, D1 Y$ O 方式一:, Y0 {1 R. O9 W: j7 S( r8 A& c
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
1 Z2 Y$ N( D+ V8 m" n$ D* C 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和7 \+ l7 e, b, T
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。 x2 o; h$ j' h$ o
方式二:+ v: f2 B2 G; }: J
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:7 P9 h4 z9 i0 j d" J3 {
SetTitleMatchMode RegEx
5 [( J- n+ M! @5 Q9 C# n$ A+ v* T return
! m8 X' W( [9 h1 L4 Q ; Stuff to do when Windows Explorer is open
& e+ |5 o& N6 c9 y9 f. H. D ;- }5 }% ~+ q! g- r: o
#IfWinActive ahk_class ExploreWClass|CabinetWClass5 T' p9 B8 b4 s/ `
; open ‘cmd’ in the current directory
. F; ]$ _& G0 [3 b9 s ;
6 a8 N% b1 P% b2 o& g4 M #c::! Q1 t; |" B, a! k& D
OpenCmdInCurrent() T' v% z7 G8 t9 S3 g! r/ n: H" I
return
1 D- J! g+ V. S8 u #IfWinActive. d" }5 f/ X0 T+ n
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.) h, F& |: C Z
; Note: expecting to be run when the active window is Explorer.
4 ?% B' _4 z: d) l1 n ;
& u# U: Q1 A( k OpenCmdInCurrent()1 I( k( r4 D e1 T
{
; Z; ~% A/ O0 P4 G, N+ \7 u' n ; This is required to get the full path of the file from the address bar: V2 F: Y& d1 S0 Z
WinGetText, full_path, A1 }' y+ a% B, N4 e$ X$ l
; Split on newline (`n)
b9 s# z" o0 x$ K1 m/ W StringSplit, word_array, full_path, `n
9 q K Y8 I8 @$ u7 D* d, _+ L ; Take the first element from the array! W* h5 h9 m- C6 Y
full_path = %word_array1%% w) t/ x& j v- I4 f9 n5 Z+ @
; strip to bare address U, s) I5 [0 A, U2 Z
full_path := RegExReplace(full_path, “地址: “, “”)/ C8 s' G* s3 |4 {6 N. [/ I) G
; Just in case – remove all carriage returns (`r)2 ?! d9 ]0 s0 Q1 c# D
StringReplace, full_path, full_path, `r, , all% r* [. \% Q% b
IfInString full_path, \, g: |; w, y% |% d) C4 `
{
" b2 r& w9 |3 \ Run, cmd /K cd /D “%full_path%”
+ y( r3 h; C& q5 o1 J( {; J' ~" e }
; Q3 q$ T. E: I: u1 a) V else
" S; |& e# J* ^9 @7 q$ ~6 ] {* ?/ z! ?; |( X. ?, |# ~2 u+ @7 T6 b2 s
Run, cmd /K cd /D “C:\ ”* p6 X, B$ ?2 \8 M
}
- c. z3 J* X8 d, {, T1 y# T5 H, z }4 S& f+ J- l' L- V7 y8 n5 A: U
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
1 t0 e n8 w0 s2 x& M1 B2 J& J9 C 这段小代码肯能有两个你需要修改的地方
( {1 m: N3 c$ I, O 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ m3 { V) Y; O
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
! _2 y) G4 o( p5 f |