此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。3 C2 [& @, F- s$ @! v: G# S
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
/ W7 @; I' \: z7 H3 z4 c 方式一:
$ Q l S/ t& {% @ 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
% h! X5 T L0 ~" d0 i: M 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
1 P! W- I$ v" g) \' u; S1 n HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。5 w2 f; R4 z0 G2 T
方式二:
9 Q( T: |1 F! v% J7 F( D 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
( v8 ?, O8 R8 _" N+ G SetTitleMatchMode RegEx8 |% A/ T: }3 L/ ^+ C' q* U8 H4 M5 P
return8 k! H6 J5 ?+ D- F: `1 g
; Stuff to do when Windows Explorer is open
/ z5 Z* x1 C4 k+ p+ a. @* [# a9 s ;
# J4 S# }1 F: _4 w/ |, n #IfWinActive ahk_class ExploreWClass|CabinetWClass7 R2 G& @0 w; E0 V# X
; open ‘cmd’ in the current directory
7 a& S/ j% K$ n+ Q8 R$ U0 \ ;
* a! M1 Q; w+ Y3 \# p: U #c::" [; I, v, p: h) h; g
OpenCmdInCurrent()2 l, p5 @1 z* c E
return
# m2 S' b/ J d3 F1 W4 j- ?! b #IfWinActive
$ c ~9 b' @) p' {: B4 P- k! m ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.* q! ^% @/ | B: u7 L
; Note: expecting to be run when the active window is Explorer.
+ ]: ~8 m. @# P ;( R# w8 t6 T+ H
OpenCmdInCurrent()+ f* A9 N9 `" R6 v# }
{7 P/ n. K& ^& B+ T
; This is required to get the full path of the file from the address bar, u, [7 d& w9 A/ q% Q: h
WinGetText, full_path, A% O5 ?# _% @/ x' p# `; ]
; Split on newline (`n)# @$ v6 c$ B& y( \, p2 z
StringSplit, word_array, full_path, `n, F T3 \' N' G& B. R: Q. ?
; Take the first element from the array b0 u# V; n( G4 A) K5 k, N
full_path = %word_array1%
' s1 U. z# v7 q7 N/ u2 h7 Z ; strip to bare address
/ C' a+ i U% U( D' G- z full_path := RegExReplace(full_path, “地址: “, “”)
) j) H5 q2 R1 B& z( @, [! S* C ; Just in case – remove all carriage returns (`r)
. h) I" m$ `5 | H) L5 ~ StringReplace, full_path, full_path, `r, , all
) E9 X# E$ ^4 \$ W ]+ t IfInString full_path, \5 c4 ]6 h, `7 y$ s3 Q) e
{( d" P4 U* C( C6 ?/ E* X" p2 u8 Z" i
Run, cmd /K cd /D “%full_path%”
/ d) ]7 {# }# s0 q: X }! g/ L4 l) B C' Y: ~* [+ k1 J' Y9 g
else
+ t+ u$ Y: x; @ B# {# q8 O$ C! F" F {3 ^$ i4 b) n" R2 E' g
Run, cmd /K cd /D “C:\ ”5 i1 m- U( k; A( m6 A
}
( P( p3 K1 y5 N; U/ J" } }
. u9 Q/ {6 T1 B1 u: Y 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
; V# M' W. F1 R7 d8 _! ` 这段小代码肯能有两个你需要修改的地方
+ v ~3 p( p1 O- ^7 h) w 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键. r! f+ S9 V$ Z0 R
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
/ V+ w! I9 k# b: \3 n |