电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。& p- B7 Y9 ~* @/ U2 z4 b
  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。3 a* E3 p' ^& k/ @4 {# [, K
  方式一:' B$ M4 j9 ^! Q' {' q; D; M
  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
5 G% ^" ?0 Y" F. J  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
0 b% E% M( w* ]/ i% P  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
" ~$ R: _4 O8 ^# A  方式二:
: Q, u' p6 M1 d  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
# h  Z- h6 q% F  SetTitleMatchMode RegEx
/ f, Q0 S. _; c  return
7 z( `0 p- w5 f# o8 I! e6 ?  X7 y  ; Stuff to do when Windows Explorer is open
% {/ U+ `3 o5 V/ \  ;; S9 N6 ~, c# x/ d, z& k4 f2 w
  #IfWinActive ahk_class ExploreWClass|CabinetWClass
6 _) `$ m- ~/ v/ v4 U  ; open ‘cmd’ in the current directory
- P8 m. u- c* F2 ]4 [5 B  ;
' Z' ^, N5 R" `  #c::
+ f; Q% Z" N! C$ `  OpenCmdInCurrent(). K0 F$ J( R4 s" O/ I- B% q
  return& \7 y" ?- P  U- }
  #IfWinActive. F2 B2 P+ l+ H" P6 ?
  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
& P) h: v" C4 `7 I  ; Note: expecting to be run when the active window is Explorer.) R( r' T7 O6 D$ V& \
  ;/ K, N) r! I# }% y
  OpenCmdInCurrent()
( u0 r. z; `7 f' l: \  {1 n, |& y' Z  w& w
  ; This is required to get the full path of the file from the address bar
* ~8 q. ?; F0 ~" E: F  WinGetText, full_path, A# K7 j$ N9 J/ d. L6 @
  ; Split on newline (`n)* i. i( G/ v! X- b3 n  H0 h. y
  StringSplit, word_array, full_path, `n' h) M" w/ J) B- b
  ; Take the first element from the array
+ p, ^1 R0 B" H. X  full_path = %word_array1%
- j; I  r1 O2 h1 z  ; strip to bare address# I9 }$ r/ L) I& g! {' _" f
  full_path := RegExReplace(full_path, “地址: “, “”); H9 @4 N' r  Q3 y3 f$ q
  ; Just in case – remove all carriage returns (`r)
' @) a3 b* m& r1 {  StringReplace, full_path, full_path, `r, , all! {2 @& b2 s& M2 a3 B
  IfInString full_path, \
" w3 ]- n' k6 \  {
) u7 q# a$ o* ?  A. q# u1 |  Run, cmd /K cd /D “%full_path%”
% i) f" j" o$ _4 @  }
$ t6 P1 n+ O; }  ?  else4 W+ ]# e6 C5 f) f
  {5 Y( [9 C" l7 _* |% @% n0 j
  Run, cmd /K cd /D “C:\ ”
8 c& F' e# o! K+ ^# k. Y$ m5 M  }- |7 E: }6 Y) i: P8 ]
  }' u  {5 b( U: j2 ^! ~
  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
6 i) h, U8 ~6 ?* f5 Q  这段小代码肯能有两个你需要修改的地方8 v7 ~9 |7 C+ ^( [  F8 |& {
  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
, S( f3 p# S5 E4 A2 a: m  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “& n" Q  [2 p5 D
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-9-15 02:33 , Processed in 0.060176 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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