电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。' N8 x3 }! M8 g; ]
  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
/ l3 w* i3 e. S1 a/ r5 a! ?  方式一:
! {0 k1 @, R7 b) Z! {1 P' w  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,: M1 s' b. \1 L% `: N
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和( D" H- A! N$ I# A" @
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
+ n. F# X9 v) j& H" V  方式二:
- D: z5 ^; V- s4 K6 f) f  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
. D9 ]9 n$ ^2 J  Q3 D  SetTitleMatchMode RegEx) n1 i. \) K1 _
  return( e" v8 M8 H5 C1 G8 ^
  ; Stuff to do when Windows Explorer is open
0 _' v" c4 t9 a# L  @- N  ;+ @/ s5 e: v' k! Z! |9 _
  #IfWinActive ahk_class ExploreWClass|CabinetWClass
9 H9 s& C5 v& Q( ]  ; open ‘cmd’ in the current directory- Q4 n: Q6 X5 g0 t
  ;% F/ Q8 w4 g7 z# V
  #c::* d; Z+ l* Z0 R
  OpenCmdInCurrent()' \4 n- ~! Z+ S- v1 e/ E$ H. K( z
  return
( o; P- [, j2 v# `) \  #IfWinActive
5 Z* B4 A4 S2 B9 s' I( ]  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
+ Y% |% S% l. }5 i0 P9 Z( x6 D  ; Note: expecting to be run when the active window is Explorer.
, Z. `; D, X- O, O  ;
$ I9 s1 @% h4 F7 [( _  OpenCmdInCurrent()
; p) c& V9 d& z6 Q  {7 O, d( @5 V9 m9 b: j$ B0 \4 c
  ; This is required to get the full path of the file from the address bar2 H+ T3 ]* {) n5 ~! B& R
  WinGetText, full_path, A
. y% P- {, Q' C3 g7 t1 N  t5 c  ; Split on newline (`n)
4 q. z6 N+ b; s% A  StringSplit, word_array, full_path, `n$ c* S% h$ ^2 \; c3 C
  ; Take the first element from the array
# y7 n0 x* g0 k* \6 |  full_path = %word_array1%
- c7 y4 x* `1 y+ X  ; strip to bare address) C2 |; g$ L, P* H1 B
  full_path := RegExReplace(full_path, “地址: “, “”)
3 l0 C5 [0 s8 w6 {1 g  ; Just in case – remove all carriage returns (`r)
$ y& j% I$ `3 ?$ `; |6 ?5 F6 @! N  StringReplace, full_path, full_path, `r, , all
+ p5 C& @" k9 I' `  IfInString full_path, \
0 L, A5 d; o% d( R  {9 T; L* T" G" h$ @
  Run, cmd /K cd /D “%full_path%”
! M3 @  o7 N/ W  X8 E" f  }
1 N' B) o- \/ S# h8 K  else
  g4 g+ @! t) E! P, X5 C% @  {
& h" q/ m3 f$ ~  B( m  Run, cmd /K cd /D “C:\ ”: U" L, n( Z1 K8 M) ~: s- ~
  }
' Y( J9 i3 ^) K  }- W- Q6 I9 p# G2 W! n
  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。6 u" _- r0 H! t; h
  这段小代码肯能有两个你需要修改的地方
$ L  o) q, a6 ^1 P4 N4 W  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
) V$ X6 t, T9 b& t! U1 ~% N* |  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
9 U+ Z0 L9 b) \8 \/ C- E
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-8-6 10:48 , Processed in 0.097589 second(s), 20 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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