此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。+ U% {" h# G+ S0 A+ b/ \
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
+ z( ]* X3 G& i+ @) k- M 方式一:
$ Z/ _/ t" K8 _9 t1 J* a0 R! q 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,/ k4 D; n; v- V& a2 W
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
8 \* m) v% @7 e |* ?3 Z2 ]. `4 K HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
9 F4 l# i; x w: [' |. N 方式二:
: r0 \$ Z& U! V: |6 h+ e 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
( l& ]- ~% w. u1 A6 i1 l7 ]3 w. T SetTitleMatchMode RegEx
0 {" k; G& t3 x return
7 Y L7 ]) ^4 N/ m% K L6 E$ y1 Y ; Stuff to do when Windows Explorer is open& a* [8 Y7 j3 G2 [- _7 [
;* O0 Y& e4 A) t2 G
#IfWinActive ahk_class ExploreWClass|CabinetWClass
( i/ K) j# [8 W7 a% M$ y ; open ‘cmd’ in the current directory1 p5 Z) k& G' U& Z
;
& m% h2 A, W; }& f4 q6 D" ^7 o #c::
4 V" ^8 B4 y$ n# c" D4 I OpenCmdInCurrent()& R+ J( h+ f7 ~1 j
return# y L- ~; b: p, ]
#IfWinActive
& H3 E U! \- F$ R; a2 [- ] ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
$ J- r) C) D4 c9 g j$ w+ R+ l ; Note: expecting to be run when the active window is Explorer.
& _+ d) ?* Y- m( {7 _2 c4 ^1 s ;
& K& E9 ^% @2 B OpenCmdInCurrent()& k* d/ |: v6 |+ D
{
; }+ O# y3 r9 g" J6 m- p% u ; This is required to get the full path of the file from the address bar
- f8 Z" w! g) }1 c3 h" n6 z# i WinGetText, full_path, A
( I: q: X9 D# w/ o5 f ; Split on newline (`n)' u, w9 A) h9 U% U! U G
StringSplit, word_array, full_path, `n+ U0 F7 \! ?4 Z% Z
; Take the first element from the array3 m! L/ U1 y; E; q
full_path = %word_array1%8 G6 q7 g7 W2 E1 d# K% U/ k+ G8 L" G; F
; strip to bare address( A4 s9 H. w" X5 P8 o
full_path := RegExReplace(full_path, “地址: “, “”)9 {. }' e# c. D4 t4 `9 t+ l8 Q! h
; Just in case – remove all carriage returns (`r)- \+ p0 G' E; `6 @8 j
StringReplace, full_path, full_path, `r, , all! ^4 _) l6 q% J" C7 j# @, t
IfInString full_path, \
4 a k' f( w& G( x H% p3 c1 g {
" `9 f0 a( h* I; { Run, cmd /K cd /D “%full_path%”
1 K$ ]' X+ \7 V, {/ M }" Y1 a7 F/ S0 o! S* E
else
) U% ]8 T& y! d, |3 o8 X {
5 i- |, u$ a4 l9 S, G$ M0 n Run, cmd /K cd /D “C:\ ”+ h! t5 c" i% @: V/ g$ o7 l, |
}
! N& D6 K6 K& _- M6 c1 J }
9 ~) Q- d2 ~. h. t 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
1 |' a2 r9 T% ?- a3 j% T 这段小代码肯能有两个你需要修改的地方
" z7 R, b" S+ x 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
* T. M8 T) Y' W/ Q$ M9 E- j 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “7 R' s" |/ g$ U9 F2 `. o
|