此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。6 u. V. m! Z$ I/ s8 \; X% f
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。+ ]( ]5 s; G7 G0 T% e, a- |& ~
方式一:
8 x- o( N4 }) A7 V 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
: A5 A# n. J# m9 X 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
/ _1 `, }) {/ d2 L2 y HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
7 d7 M4 `) u, { 方式二:, ^, m9 {0 w7 r" q3 X3 E
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:* [$ K, r- W5 v9 O
SetTitleMatchMode RegEx
( W1 D$ W4 Y: P) ]/ Z( G return
# {( u3 l" _$ K$ s4 |5 V6 z/ t ; Stuff to do when Windows Explorer is open
! C, D+ ], U* W3 k; r- b# r ;
5 ^* e* _" g% ~+ E6 R9 k- u; Z #IfWinActive ahk_class ExploreWClass|CabinetWClass
/ e2 f/ ~+ H4 D" {6 T: S) ^8 S ; open ‘cmd’ in the current directory- T$ |8 `/ T+ l9 b# _4 Q5 K
;6 A2 J! s( x" ]. P
#c::) g, D0 |$ k! y
OpenCmdInCurrent()
# }" `8 R& _6 n7 b4 D return
3 J7 N0 V& h d5 }! ]2 x, e& Y #IfWinActive) b0 P: o$ B [* t {5 M2 _
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
W7 ~0 f* q( H9 }8 C1 K0 t& P ; Note: expecting to be run when the active window is Explorer.3 P0 z' Z `6 c8 y( Y1 U' l+ F
;
) j* K) x' E% L6 }% A OpenCmdInCurrent()/ X! e6 t' s* l+ a7 {7 Q& i* ~ p
{! K8 e, Y, L& D( F) ^7 _
; This is required to get the full path of the file from the address bar# k# Y5 B) \9 {0 K
WinGetText, full_path, A
6 @3 c3 T+ @- q4 r% m7 d ; Split on newline (`n) q& v' X0 X% h! F; f( s3 L; C
StringSplit, word_array, full_path, `n" F0 ]3 c. ^3 R! d9 L9 V6 F
; Take the first element from the array+ c- o' t g& x8 K* G
full_path = %word_array1%; c" }) r6 P. X8 n3 m
; strip to bare address
3 A) h7 F+ I; _6 Z- C$ Z, W full_path := RegExReplace(full_path, “地址: “, “”)
- p5 a; s; |" x# Z4 k' \; P! h' z ; Just in case – remove all carriage returns (`r)
B* q/ F$ F9 k ~! m% \: s StringReplace, full_path, full_path, `r, , all/ J; F# K* K6 {5 c' C! T3 @
IfInString full_path, \
! {/ \6 z+ m" D$ K {0 E' i) h/ [2 W0 i+ |
Run, cmd /K cd /D “%full_path%”( N% X: X: |$ v+ N5 _, r. f$ T
}# l8 G; A" P6 t! d5 ~2 y
else( f/ m1 m# {; ?: l6 V# h
{
, n5 G5 ~) }: ? Run, cmd /K cd /D “C:\ ”
. p9 n" h4 m5 F6 A- c% I8 A }3 o" ~) ?4 S* R) P
}3 G1 h2 v0 ~' k( ]! R7 D0 r
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
; n, m, U; W, i, S8 s 这段小代码肯能有两个你需要修改的地方
5 V# G8 {* ]% ^. I' e% E8 z7 M 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
s+ x; ^" o( T, a+ ^1 o5 u 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
4 ^* y! @. j9 C1 W% w( I |