此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。 [0 ^$ r S3 N S5 c9 v
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
" H. v5 r! a% @" K V. R9 a! t1 \2 D9 _ 方式一:: \# Z( J2 N. c
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
# N+ J) h2 w% ]2 h8 k 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
" |2 V* p9 K4 S8 k6 o HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。& O- O/ c1 Q( z/ ]
方式二:1 g2 {- a+ a+ |9 `8 e* E6 X
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
4 v2 W7 m2 a3 E) P" R+ ]4 G SetTitleMatchMode RegEx
9 J5 u* P, M6 W% {; g( A return
; F) |1 l+ L, u! p ; Stuff to do when Windows Explorer is open f! M1 U# p: ]8 P# i
;
: A, Q/ y$ m0 Z; ^ #IfWinActive ahk_class ExploreWClass|CabinetWClass
4 Q* Q W9 v9 [0 S* [ ; open ‘cmd’ in the current directory
) A* H" P+ _& b/ \$ a5 i ;
/ Z0 c* j7 u' t& u/ A+ |8 E2 { #c::
) m! S3 @9 K, Z3 j OpenCmdInCurrent()
3 B% V3 |3 e- z return( s9 b# X/ ?' G% ~
#IfWinActive
, K6 Z* I! ^- H5 ~& \( r ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
. s7 [! j P: w ; Note: expecting to be run when the active window is Explorer.
' E) F" P0 ~4 X! _ Z: ~ ;& e+ r; L+ N! L% _% G
OpenCmdInCurrent()
# }- Q! h& a5 l- Q! K {
/ ?! q& J. y( e+ x4 ~! t6 I+ u ; This is required to get the full path of the file from the address bar
C( H" Z8 [) m; q WinGetText, full_path, A6 O# y2 M; z3 S
; Split on newline (`n)
! a# m1 u6 m# g; G n9 p StringSplit, word_array, full_path, `n
# I7 D! l1 D/ u7 {' s" K0 l8 j ; Take the first element from the array
1 m. m# m' ?" H) N2 B full_path = %word_array1%
5 [: ^0 }2 H t4 \1 Z/ N ; strip to bare address
3 G% E7 u3 U K- ~$ ?& K0 [ full_path := RegExReplace(full_path, “地址: “, “”)& T% S g/ ?( @( N
; Just in case – remove all carriage returns (`r)5 \$ {& n( e" b% ?) W- K7 I
StringReplace, full_path, full_path, `r, , all
( L# t, e! c0 s6 o, `8 f IfInString full_path, \
. I8 Z" R* u+ C* h1 u) { {
" m, S: V7 X5 F/ V; X2 _ Run, cmd /K cd /D “%full_path%”$ J8 z- S6 Z& _
}# O, }. D) C2 d# [
else# n1 e' E K+ |, p* G2 o
{4 j6 m! N3 r+ n0 Y6 V& m1 q
Run, cmd /K cd /D “C:\ ”% [5 ~3 t- ^5 R2 k9 r
}
3 t. M9 H) W# z' X6 h q1 G }
# L1 g8 c8 P) m7 q; |) k/ f8 m 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
2 H: S& s# f& B/ O( B5 B2 P! m 这段小代码肯能有两个你需要修改的地方
. \$ y1 v2 x9 r3 x4 [' f+ l2 | 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
3 |/ H( p* t' S/ S5 y 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “, H4 \: s" {) y
|