此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。0 \ A3 O' V; A- d' u
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
# [: w& c% O+ }" k 方式一:
! e2 `: K: e( S! z$ s 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
& o5 I, v e7 g 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
7 I, ^$ _& }, C R9 h) f HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。- |. K4 g6 e. i3 V
方式二:
) |+ U' j# K! a" m- R% i 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
( m+ L9 E4 n9 b- e I SetTitleMatchMode RegEx7 J3 n( S3 U; ^$ n- J- P( l9 J& U8 _
return0 l# n T6 L0 K& s8 Z/ P/ ~* b4 }
; Stuff to do when Windows Explorer is open) K7 ~/ I7 `9 _% y4 u7 s/ g& D
;" n* w% ^: A! O+ e% V
#IfWinActive ahk_class ExploreWClass|CabinetWClass) o( g$ h! n7 p1 U/ f. [$ P
; open ‘cmd’ in the current directory
+ O+ e: Y3 e' d ;, Q3 s8 k: k U' x& n4 ]# }& z$ @
#c:: i! W& ~2 h) W9 Y. f4 L
OpenCmdInCurrent(). k. k9 u# p+ U5 H+ n
return' {6 w0 l: Q# ~, _/ }; R! C
#IfWinActive
# }' j3 f, W& b- @ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.( V4 i- C# V% w X5 M7 e
; Note: expecting to be run when the active window is Explorer.
0 {9 C5 @" l& x, q( j2 s" m( _ ;7 I3 G7 ]% H( h; H& B
OpenCmdInCurrent()8 Y( Y: T* U, O( q
{3 B8 |& E4 u8 r3 F8 P7 w: `
; This is required to get the full path of the file from the address bar
5 }) ~' B6 L6 |( l& H. i4 ] WinGetText, full_path, A
' q$ l2 u1 O/ z, H ; Split on newline (`n)
: ]5 A2 K; x" v: ~% K StringSplit, word_array, full_path, `n$ A2 z$ b) _: s8 f) h* [( s& x" A
; Take the first element from the array
2 R1 N9 Q& s& y2 h4 q/ W full_path = %word_array1%$ h7 x/ @: ?# P
; strip to bare address
, _$ ^6 m" X9 I full_path := RegExReplace(full_path, “地址: “, “”)
5 P K% _# m! a( ] ; Just in case – remove all carriage returns (`r)
4 g+ `) R* L7 C9 @ StringReplace, full_path, full_path, `r, , all, Q. b# e# e" A, Z4 x" B1 `
IfInString full_path, \
" G6 b# W A3 i {
% g+ ?! {, f1 V# [7 N# `; B Run, cmd /K cd /D “%full_path%”
* b! ^* n+ X, {3 f& ~( O( W1 R }* O. H" u+ Z" {$ _/ x
else
0 S8 O1 x$ @+ p2 E3 _* f {
4 x3 j6 X$ ~5 J/ i! c' Y0 k Run, cmd /K cd /D “C:\ ”
- b" `9 w" C' d( N5 p7 Y0 R# J }
, w, p6 {$ \* |: r3 L }) f* _ K- R$ n( ?
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
/ h1 l# [& a* }" N* q1 {$ H 这段小代码肯能有两个你需要修改的地方5 Z. s$ c0 W7 q [, n, K& @% B# Q
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
. m, {7 c- B' U3 u9 `& Z/ h 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
7 U- K0 z4 I4 Q) V5 @; W: K* Z |