此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。1 s, x, k7 l: ^) e @; S3 S
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。6 t9 H; r' r; C# o
方式一:- G/ h4 w9 Y2 t
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,9 T' c: U e& {
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
1 S G. o0 u' ?: @% n HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
! h5 E: x( a7 c: T$ I5 s6 |9 p* U 方式二:
$ r- Q+ g) O) e# L. G& S 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:+ m ^ ^6 z; p U6 U
SetTitleMatchMode RegEx
( ?' M; r" ]5 T7 [8 X& d% m return
$ M8 E, ?4 Q! T. V$ f ; Stuff to do when Windows Explorer is open
+ k" d2 ^5 S A3 m6 @- ?# ^' `+ ] ;
) Z$ A" E, B, y6 z3 [: s #IfWinActive ahk_class ExploreWClass|CabinetWClass- m) Y' U. ^( o
; open ‘cmd’ in the current directory
9 l- ^7 w$ a6 Z& O ;3 Z7 h1 `3 u( \' O; `7 I/ k) j
#c::
/ ]& [- k4 D8 Z( J. S- p0 l) G' Q OpenCmdInCurrent()
8 M+ j: T1 l7 Q& i return
5 x, Y( f+ u& o% b4 S #IfWinActive4 [6 r! @- x( x7 G/ {+ c3 o
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
4 e. w) G2 ^4 e' [ ; Note: expecting to be run when the active window is Explorer.
5 V' Y$ p/ D- n4 N ;! t! h4 c3 F( k" m( |
OpenCmdInCurrent()
1 p+ s" J' m! | {
0 n3 o. N' @5 A% ` ; This is required to get the full path of the file from the address bar0 x6 e3 P; c( O+ f8 s
WinGetText, full_path, A
3 q( Z G5 {0 l2 B3 Q ; Split on newline (`n)4 X v, _$ F$ j$ i6 P; F
StringSplit, word_array, full_path, `n
3 n9 e; c% o% W ; Take the first element from the array# e1 E3 k* a7 C& G2 b
full_path = %word_array1%
) D( e6 H {$ T* l x/ t$ h7 ^: d# r ; strip to bare address8 ^; ^# b( v' {6 _
full_path := RegExReplace(full_path, “地址: “, “”)
+ D5 x" |& z& z5 ]8 ? ; Just in case – remove all carriage returns (`r) W* M9 m- y1 z1 ~ m
StringReplace, full_path, full_path, `r, , all
! J$ D, Q/ n) v) V9 E6 t IfInString full_path, \ q, I- n8 r1 u' C* E
{) r3 {9 U4 B* i* z' V, F
Run, cmd /K cd /D “%full_path%”
7 K1 Q( z0 V7 _ S: e }
! u7 `2 [) N q' ` else
# l4 H* i+ _; t; i, | {
! d% o5 v! }( _' z6 K Run, cmd /K cd /D “C:\ ”
T+ {; x. j) Y9 k& z7 U7 v }* u6 k, \' x9 A6 x3 t/ m$ t
}
" f' ~& r9 U. t3 t6 f: W6 ~' a, ^* _ 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。/ @3 j7 |( c' o: h# B
这段小代码肯能有两个你需要修改的地方
- [& L" R' c. u9 N 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
( Y0 {4 z: N# C J 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “ D! V) i0 e) g% d: |( |
|