此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
q& Y% o3 [- |6 Y 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。+ X; s5 A8 s( x
方式一:
7 c( p! _( m0 A5 Y 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表," D% I" o4 y1 |( A; l# {, b
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
. C. s9 y3 s) e" [ HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。( @/ a( Z8 |5 {' ?5 Q: i
方式二:
5 o5 C- @2 t$ a% l/ Q" K2 p1 J: z 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
! x$ k- w: j9 ]& a0 K SetTitleMatchMode RegEx
) |" B+ S8 P" i return
3 V2 m: S: n1 h$ P, j9 T ; Stuff to do when Windows Explorer is open7 W9 b$ i* H; H1 ?5 `
;
0 B7 R# s# B" [' [ #IfWinActive ahk_class ExploreWClass|CabinetWClass
0 K- v6 L3 y' _% Z6 I ; open ‘cmd’ in the current directory( L- X' B/ |% @5 r) V
;
& Y( V0 \3 q0 Z* v #c::
, ~+ I" J- [* @6 [4 _7 X- Q" H OpenCmdInCurrent()
6 E9 _! Y6 w* R/ Q s5 X return* B; g8 G, u* x9 {, H
#IfWinActive
$ d. ~3 K7 T; p( a ; Opens the command shell ‘cmd’ in the directory browsed in Explorer. a# i% |- h( h0 m0 j3 b( r
; Note: expecting to be run when the active window is Explorer.
! l( o8 E [5 \8 Q ;) H' H' M7 A6 K! Y# L
OpenCmdInCurrent()
4 g! O9 t% Z z4 p1 T1 ~6 `% E {
! g9 T" Q, [ K2 L. }' i ; This is required to get the full path of the file from the address bar
. [* w D7 N6 V) y WinGetText, full_path, A
% n, L$ X7 d; ]2 J ; Split on newline (`n)% j. |: c1 d# s& N
StringSplit, word_array, full_path, `n
( S X9 z2 P" _2 L+ U4 h ; Take the first element from the array" j% y, e) l1 d* j- x" N
full_path = %word_array1%* b4 ?- f6 m4 M4 N+ v
; strip to bare address% v7 U n E1 S5 y5 L7 ]
full_path := RegExReplace(full_path, “地址: “, “”)' U6 \$ F7 H9 n& y, h
; Just in case – remove all carriage returns (`r)
" \9 ?8 Y6 Z' y! R+ }1 j4 s StringReplace, full_path, full_path, `r, , all
0 N5 q, I1 t) U# ~( }5 P( R IfInString full_path, \$ u7 k, }/ ~' B( G
{
4 F" f& f" Z- @; L; B! E Run, cmd /K cd /D “%full_path%”
6 t7 L$ ~7 m: Z9 @3 b }
8 ^5 c' V& e6 h3 F6 A' G- K else7 K/ a# N: w7 R" y
{5 t: x; u- X& A( x0 J4 c: g4 N8 ?
Run, cmd /K cd /D “C:\ ”" [7 n+ a& _* f6 K" @. K
}
) H7 v- ?# T9 V }
6 s. _" X, O: o3 `& R' e. O5 G 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
, [8 Y* u% x5 x9 b+ [- l/ o9 f 这段小代码肯能有两个你需要修改的地方* u, G% t# S4 t! D2 B' U
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键1 H- [4 k5 ^+ y1 L5 o
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
$ I2 Y9 C4 u. J. M& s |