此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
. L4 C/ |& w/ m" i 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
' M- r9 G, f8 f& D- a 方式一:
5 w; Z4 D* ?: y' A( f$ Q: ?4 x 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,0 e+ H C- S1 m& v9 N5 z+ ?
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
$ z+ s W' d8 h- `; D9 C$ T. f8 A" r HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
3 C8 T- |! c, ^ 方式二:
# n9 ^# B7 @" k2 v6 D. `! F 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:4 T1 n, w3 o l1 G* Z3 A1 F
SetTitleMatchMode RegEx
/ x7 [, n, E' ?8 }! @( y7 G return2 d" t5 s+ ?4 Q4 V8 H" M3 u9 h. x
; Stuff to do when Windows Explorer is open
6 s+ i% j! E) S' F. A ;% T2 P3 b- g6 p3 g5 V
#IfWinActive ahk_class ExploreWClass|CabinetWClass
' z' m, a; j1 R ; open ‘cmd’ in the current directory. V: ]7 l3 m! ~+ E' R8 |
;3 V- ?7 V9 @' ?
#c::
; g4 o4 p2 Z) B8 o$ ~; H* u OpenCmdInCurrent()
9 g8 }( G' W% j5 s$ {- f, u return, J3 `4 R; ?' l- |
#IfWinActive
+ g' D+ g/ w: \7 Q! _ ; Opens the command shell ‘cmd’ in the directory browsed in Explorer., f4 p; _2 ^9 V' z* r8 ^ f+ B) {
; Note: expecting to be run when the active window is Explorer. X* I7 K4 s, v* x' M! d a
;
! l3 U4 n; ]- f6 d OpenCmdInCurrent() w- Y* h5 s* B. [, z7 E. i
{8 i- {& P# w. i% b4 m: e
; This is required to get the full path of the file from the address bar8 _$ j: r1 }) a8 [5 ~, W' S! e
WinGetText, full_path, A
6 I+ ]; R- i7 J5 N+ O; f ; Split on newline (`n)
% f# |1 q+ N X+ R# k StringSplit, word_array, full_path, `n
2 k6 i% f, v( K$ v ; Take the first element from the array+ G2 c: A; Q0 I) g" L
full_path = %word_array1%
7 I M- V6 |& r3 p$ X3 g5 v ; strip to bare address1 c7 g% a, F, I2 r
full_path := RegExReplace(full_path, “地址: “, “”)* a/ }* I4 ^7 u# p
; Just in case – remove all carriage returns (`r)/ z9 S1 G4 z7 ]: A
StringReplace, full_path, full_path, `r, , all- ?$ J6 F( D8 x
IfInString full_path, \$ {3 [" C5 Y0 Y s0 H2 @. {5 x! K
{
) @2 a( L+ K) m Run, cmd /K cd /D “%full_path%”
[! e! ? V' y. O }
/ J/ L, o& G; Y/ W) c! r else6 J2 _2 E6 _: M. I$ L7 t
{
o( G1 ^8 ?& P& ~; x3 r Run, cmd /K cd /D “C:\ ”
W/ X! l# v7 ~% n/ Q) d$ j5 Z }8 m+ ~5 {8 S" r7 W, `# [- k
}
2 R" w7 c ?( t# H+ C+ W) i 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。* q" t( }5 L2 s( m
这段小代码肯能有两个你需要修改的地方2 S# @6 o4 F7 Y6 Y2 F
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键6 r& U0 o+ @' W L, r
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “5 n( }1 O2 Q E, t
|