此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。- s6 J* F2 F0 P
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。$ s' C! e* f5 g7 n+ g0 B4 K) z
方式一:
" D) D0 h& H! d! Z: ^; u# M& } 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,9 ~- ]1 G$ g0 y# X9 _# t+ M
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
; R5 m! m. G1 B' n5 ` HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。/ y7 D. K, U$ C* }) R3 n; D8 E
方式二:
1 l; J5 ~. ?8 Z 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:6 Y+ I2 E; X1 N3 {* m2 X
SetTitleMatchMode RegEx
2 D8 M0 w, v% C0 n( ?* P9 V return* d% T# |$ w6 n
; Stuff to do when Windows Explorer is open" k5 @) A6 s3 X7 P7 s4 s
;; r& ?5 h: e/ ?% y% I F! S; g
#IfWinActive ahk_class ExploreWClass|CabinetWClass% n1 E" s; G3 G, A+ ]
; open ‘cmd’ in the current directory' u" \8 V% x: T9 \
;
7 e: }) e( k& M% @1 v( R #c::% W, x' _% r' j3 ] l
OpenCmdInCurrent()
5 z0 a$ @5 u1 g7 }3 { return
" @ y! f$ F& E) S# q7 _ #IfWinActive
' ` ^, X3 @7 q. x2 {2 o ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.1 @+ l/ u0 W- ^. n# F. k
; Note: expecting to be run when the active window is Explorer.
- g# B1 v3 D) X/ j ;
" a6 [. o* A( {# ^ OpenCmdInCurrent()
# I' Y- F) i& E {. w( y$ k" `" P2 }
; This is required to get the full path of the file from the address bar
8 Q# C; \1 P9 Z6 s" ` WinGetText, full_path, A
7 x8 H" `0 F3 E0 x6 B ; Split on newline (`n)# u6 _! H! ~( b k% k+ P
StringSplit, word_array, full_path, `n
' }& o5 ?9 o8 c" c! }0 s ; Take the first element from the array3 d; V# a* T/ P; m$ m
full_path = %word_array1%
2 O4 }2 c9 S2 D" B ; strip to bare address+ n: a3 g* O4 R4 y6 I
full_path := RegExReplace(full_path, “地址: “, “”)
7 i4 h$ q( C& f1 x& q ; Just in case – remove all carriage returns (`r)
& E! p6 C4 ~ @3 @ StringReplace, full_path, full_path, `r, , all
) {, d. ~# G8 r0 {+ c IfInString full_path, \
# L; Y4 u+ W b {
( O4 m3 V% s+ F( I4 A Run, cmd /K cd /D “%full_path%”) \( t6 ~; _3 j5 Z9 ~ W, M
}" x* J+ n; O% z2 V; c' [ M
else
2 b# @5 o; X0 p6 ] {
- Z( [8 t/ F5 L Run, cmd /K cd /D “C:\ ”0 D* y. y6 }0 ]: e4 k
}
% c% W8 b8 m3 | }# F$ w8 R9 e' F# J# S1 m9 [+ Z
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
: Q: C* E4 D* w+ m 这段小代码肯能有两个你需要修改的地方% ^9 e$ v. j- D* Z# h
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键4 B/ R# b5 X5 u* j
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “5 D& U- I% P$ t# x' b
|