电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
4 K" Z) b, F5 }4 k  P3 r  U  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。' c; ~# q' x; ^( @6 N3 Z5 k% M
  方式一:
  {  l* K% d$ w3 _! h  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
: x! Y3 p' n9 M* Q+ x% x  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和4 w( L3 e) R3 C& \, N# l
  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。& s% T  |$ D; {$ h
  方式二:
- r- b- |6 P% i& t/ M+ O  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
3 y+ O. O( f  @( s& ?8 w3 U  SetTitleMatchMode RegEx
% B7 z  k/ R$ r  return
, N" c2 n% c1 k% b+ D# y* `6 P* X  ; Stuff to do when Windows Explorer is open
3 G" R0 y& d  E% E! E  ;' h5 x3 b% n" J1 w
  #IfWinActive ahk_class ExploreWClass|CabinetWClass9 S4 U8 ~6 O$ Q1 x( V( s; B3 X
  ; open ‘cmd’ in the current directory9 I6 }% A$ W- `
  ;4 N2 o: X" C0 N( e
  #c::
9 h( f( k7 U& N8 N: y2 J; Q3 r  OpenCmdInCurrent()
# B7 e. _) p+ O4 K  return0 c% l& R% _* M! |( q: s
  #IfWinActive; R1 z! O8 S2 \2 W4 w
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.4 @7 q% }7 s$ x1 n, a
  ; Note: expecting to be run when the active window is Explorer.
$ X1 A0 D0 i2 ?5 X  ;
) o! i+ z9 C* j# c( m: D  OpenCmdInCurrent(): L) F6 |( S: L9 D
  {
% |" v9 ~$ h) F6 \/ S4 e& w  ; This is required to get the full path of the file from the address bar
! m* T% [3 R7 j  WinGetText, full_path, A5 J5 I0 @1 I' |3 S. Z7 i$ q, m+ _9 T
  ; Split on newline (`n)( \; X! H3 n! ~0 L, ?
  StringSplit, word_array, full_path, `n
! F7 `' ~0 i9 n2 ~  ; Take the first element from the array* m6 d2 g' P) x  @  g. y5 |
  full_path = %word_array1%9 D8 ~! `1 e6 G
  ; strip to bare address
4 t' |8 c6 O: `; s2 w/ a4 J; h  full_path := RegExReplace(full_path, “地址: “, “”)! M( l5 O. a7 v( ^3 u
  ; Just in case – remove all carriage returns (`r)
' r( G9 K: K7 s  StringReplace, full_path, full_path, `r, , all
# J, v( i- F& l; g# k/ u  IfInString full_path, \
/ ?8 `/ d, j: g; Z  {
( m9 b' ]0 {0 [4 _; [6 e( C  Run, cmd /K cd /D “%full_path%”8 e# U% d7 R; U7 g3 T
  }: v$ [0 Y' ?2 f4 m
  else& ~1 R( i. Q! B- p
  {% v! w7 ~9 }- k2 U8 p
  Run, cmd /K cd /D “C:\ ”: I6 u& ]) g5 @
  }
/ o: ^: Y/ {' |  }7 S' c9 T/ I7 }/ Y8 m
  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
% Z# W! e- x& x! O. c1 r" ~+ j  这段小代码肯能有两个你需要修改的地方. m* ]) Z3 B+ w0 t/ q# G6 G0 C( C3 J& }
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
* c/ U3 p- _- P. B4 v( |% G  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “( n, H' K% Y" `% ]
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2025-11-29 07:23 , Processed in 0.054161 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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