此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。% T% m* i( X( X$ R n! h" N
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
2 ~4 s0 U( A$ Q2 K 方式一:
O$ s5 ]9 Q" p( A4 b 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
& c \$ n# X$ ^2 s" j 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和8 K. L; _& k8 G: E0 R! c; Z: P7 j: [
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
" G+ L4 O- K) y, d* O 方式二:6 z) s# _4 n8 Q1 V# }+ k
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:$ k$ w; P' n! k1 c s
SetTitleMatchMode RegEx
6 ?0 Z/ D2 x4 t1 L" M j0 d; } return
1 @2 c/ ]3 n; V! \ ; Stuff to do when Windows Explorer is open: r; ~( D! n4 T! @
;; f- j o, X R* T P5 E
#IfWinActive ahk_class ExploreWClass|CabinetWClass
S) b" X7 Q; s ; open ‘cmd’ in the current directory
$ r; a' x0 ^" i; n u ;
; @- N4 R" a. z0 f- f( U #c::
. l$ j0 f1 W) D4 R& R; s OpenCmdInCurrent()
* N3 Z. e3 q4 q+ v return& s' J' P d3 G0 I
#IfWinActive2 O. N! d3 z, a. e- }
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
D3 Z% P* m& K& @6 e1 E ; Note: expecting to be run when the active window is Explorer.
5 P) j7 h6 g' l! Z5 x' W l+ V" {3 G ;( w5 h7 O+ I2 M
OpenCmdInCurrent(): ]6 \, m0 n9 O! \. x. @3 j/ f
{
. _* }& M& x, O$ l$ r ; This is required to get the full path of the file from the address bar
) ~0 f/ J p& }$ v2 l WinGetText, full_path, A
" D" d7 x# I; F3 t5 P+ g ; Split on newline (`n)) h1 [8 R5 C e& s, h& a
StringSplit, word_array, full_path, `n
{/ B/ t- s' ^: a* Y ; Take the first element from the array
I5 g$ z3 o$ E( p$ A; }" K" k! { full_path = %word_array1%
0 M @9 T* C- d% k5 h* Y0 ~ ; strip to bare address+ t! x& h6 k! \$ D/ }: t9 g! P
full_path := RegExReplace(full_path, “地址: “, “”)
1 O- I" i" C$ s7 P ; Just in case – remove all carriage returns (`r)" h& Z$ g( \% u+ b6 ^
StringReplace, full_path, full_path, `r, , all7 C2 R( P5 l# ]# K4 A
IfInString full_path, \
, e8 |+ `( I# l9 h {2 \4 F$ s) n6 a2 Q$ n5 H; G+ F
Run, cmd /K cd /D “%full_path%”
1 t9 X4 a1 u: ]! c }
: n! t" ^" ^0 Z# S# Q9 y else
8 g/ \ n4 s# c {
+ c! W3 t7 {) m0 X( a5 B: f8 d Run, cmd /K cd /D “C:\ ”
+ X4 k5 U. }! K: P3 ? }/ a1 f( \" d9 e5 C) g+ }
}0 F* a& @1 f% n2 S+ w9 J) B/ G7 u& p* C
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
) ~0 N7 l2 H+ D. O3 n; I% x 这段小代码肯能有两个你需要修改的地方3 } x, r% r T4 I/ y
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
( T6 B7 O3 e, A' _ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
+ D% P. k0 t$ F$ b |