电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
6 j: P8 @6 V0 G# b8 f' R  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。8 p' C" q/ Z4 o) S$ ^* ]
  方式一:' E1 h* A" a( f* K- s% j
  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
! O9 b# q; |! K- E  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和# F% j! J9 ?' y- H: Q
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
( w8 Y: M1 w+ Z. V  方式二:: v( ?( n9 i5 `/ f/ t
  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:9 w5 Q) D( J) D& R3 E
  SetTitleMatchMode RegEx9 l$ s: |. e( t: s& D7 q- Z) j
  return
& r+ H/ G/ |2 V+ V: x5 _; Z* B  ; Stuff to do when Windows Explorer is open8 b9 r' q, W; n* }$ u9 s" n6 i$ t, A
  ;
( }! y! |$ h" Z6 ^" A2 s  #IfWinActive ahk_class ExploreWClass|CabinetWClass
: V- x/ J( p: p  ; open ‘cmd’ in the current directory! h. o; D7 D: _5 `( S
  ;! d& k, ^: s8 E7 p5 C% |4 j7 g6 O
  #c::# k' l( |7 ^1 c: w* N# ?( ]
  OpenCmdInCurrent()' f6 ]8 M# \" ]& C0 S0 T
  return
/ J6 s5 H. L) n) P2 y) o1 n  #IfWinActive0 ^  o8 @( F8 t" d- H" z3 U* P
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.7 A3 `# ?% r0 A. U+ F* d8 e* U: J$ Y
  ; Note: expecting to be run when the active window is Explorer.- q; g: Q9 x$ R% _
  ;
' n( I0 u- r# e- d: q3 F  OpenCmdInCurrent()# I2 u% j7 d6 A( y
  {- `: H7 r9 ^1 T
  ; This is required to get the full path of the file from the address bar+ P% k! U3 F. K7 ~. P
  WinGetText, full_path, A9 e1 q+ A+ e( z
  ; Split on newline (`n)
# X$ G; @9 a2 `1 S2 O6 x  StringSplit, word_array, full_path, `n
* w) I" a. @  {3 ^2 I  ; Take the first element from the array
0 q( d7 `$ |6 ?( G3 r8 L0 K- y  full_path = %word_array1%# g6 a2 e( M9 X2 R- W- G9 f
  ; strip to bare address
/ ~: q2 `  V/ V8 |  full_path := RegExReplace(full_path, “地址: “, “”)+ a4 R: ]1 J/ Z( ]
  ; Just in case – remove all carriage returns (`r)
/ x9 M! b6 B$ b  StringReplace, full_path, full_path, `r, , all) E( C- z- F* a1 I) E
  IfInString full_path, \
" y, Y& W$ i( @7 V1 O9 p( m$ {5 d  {
) l, S& c* w! g; p& q% B7 |  Run, cmd /K cd /D “%full_path%”
5 l- N  C7 I9 V+ ^! J  }
4 F: L/ [0 L4 U  else
) E0 E% b* W" U# Y  {
* j* Z0 k0 i6 ]  Run, cmd /K cd /D “C:\ ”
3 a9 D* B( i& e3 w7 f$ [  }3 O+ p9 w. Q' y2 m* G
  }# c! C9 m+ K2 C1 t
  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。5 M5 j8 b: u9 x2 K
  这段小代码肯能有两个你需要修改的地方
6 A5 B) M3 {; R9 n& z  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
! p/ u% D- a/ \6 ~  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “" f- E0 ]7 i6 G9 A
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-4-21 11:00 , Processed in 0.054131 second(s), 20 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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