电脑互动吧

 找回密码
 注册
查看: 5855|回复: 0

Windows下更高效的打开你的命令行

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
$ @6 D( }" T+ e( [. D) v# C  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。1 R, Q  h" C, I* @0 ]% F( n, p& W
  方式一:1 _% f" i; J" b  v8 S
  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,: V2 C7 U; |! H' C& n
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和/ k  G- |( @6 m2 }! [
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
& n) J3 ]! D( |& `0 s% V. H  方式二:' Q  w/ k+ R9 ~2 K  @) F# X
  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:8 H- p" \5 f. Q
  SetTitleMatchMode RegEx
0 E0 s$ b, U6 G, f; K  C! w  return3 [/ O/ n6 R* ^+ Q6 [5 y2 j6 A9 n
  ; Stuff to do when Windows Explorer is open
: @* Z3 d! j! R, L& ]  ;1 h  l) r4 r; ?) p
  #IfWinActive ahk_class ExploreWClass|CabinetWClass5 L+ u+ R: A7 m" {
  ; open ‘cmd’ in the current directory& X! [9 H- \9 z% K5 Z! O
  ;8 C$ d- Y+ z9 V! z2 F+ g" r7 S6 ^* z
  #c::) ]: s- A) G0 v# E2 Q
  OpenCmdInCurrent()8 e0 {0 S5 H7 P! I
  return
" t0 q. N6 E8 K2 h  #IfWinActive7 c3 U+ g4 w5 ~0 J% u0 o
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
4 j$ @$ m1 z, }: @  ; Note: expecting to be run when the active window is Explorer.
- M5 S4 K( n; t" i3 Y7 g, k  ;- s: n# G0 x" x
  OpenCmdInCurrent()" P( E# J* ?  G/ u8 P$ q# G( \
  {+ ^0 T& k; ?& a/ c2 u
  ; This is required to get the full path of the file from the address bar( T" Y- X& F+ {9 k; S% T2 W
  WinGetText, full_path, A
& w1 a8 I+ e0 B# \( p  ; Split on newline (`n)3 ]. M7 u  L* y  x
  StringSplit, word_array, full_path, `n) o9 ~. S- p2 W
  ; Take the first element from the array
- v% W1 h2 K$ n( S4 \  full_path = %word_array1%
, ^0 C( _$ r6 y, D9 f  |  ; strip to bare address( ?! b% k# g* t" I9 a: b
  full_path := RegExReplace(full_path, “地址: “, “”)) s, _8 P$ m* N
  ; Just in case – remove all carriage returns (`r)
& z( c, Z; ]/ a+ B$ ]4 F4 |  StringReplace, full_path, full_path, `r, , all& P6 v. t9 c0 e) a# l. k
  IfInString full_path, \
. A/ z* j* R/ y- o6 |0 k5 b+ q  {! T/ }: R  W8 @) S- x
  Run, cmd /K cd /D “%full_path%”* D4 F7 Q8 R$ k; l2 b
  }  @2 h* a9 `4 ^, S2 V
  else1 h# r# i& a3 M
  {
' `. s3 N# h( ], v- o. U  Run, cmd /K cd /D “C:\ ”
8 @/ f1 k& {! L9 \& a  }9 |1 t7 z% N' i+ E: G) x! D. @
  }
, F- J' B! }9 E$ ~3 l' u3 D8 |' x  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。+ x; v. L/ O1 h" h* Z4 F
  这段小代码肯能有两个你需要修改的地方
& Y- M2 ]2 Q) s1 ]9 b  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键/ t$ o4 Y( o7 m- v+ @
  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
3 H( _3 ^1 W  O# }$ _# ]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系我们|手机版|小黑屋|Archiver|电脑互动吧 ( 浙ICP备13037409号 )

浙公网安备 33032402001025号

GMT+8, 2026-1-25 17:01 , Processed in 0.054188 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表