电脑互动吧

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

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

[复制链接]
发表于 2014-5-21 10:20:02 | 显示全部楼层 |阅读模式
  此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。$ x2 |) c9 t% r! z5 w- b& k
  正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。8 \: O. [5 |% P) e$ j; F! t
  方式一:
. X7 L7 `& y( j+ d: U- L  在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,) b  e6 f8 T# w' f7 Q/ q4 U1 l
  去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
  \9 Y. v3 ^) G2 G. K9 \  HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。- ^  F4 B) u: p- O; w% i
  方式二:
, e) N! C& C6 f$ s- o  l0 b; h  用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
* \8 |6 q5 U1 _4 C+ W7 K1 `  SetTitleMatchMode RegEx6 C7 K/ h. ~# R5 L: x6 l
  return( S9 Y& W+ a' G; ^* c3 m3 Z* T* J
  ; Stuff to do when Windows Explorer is open! _, C/ L+ @% L/ p
  ;) E; T2 a1 P5 Z# C
  #IfWinActive ahk_class ExploreWClass|CabinetWClass8 _, ]9 }9 ^4 [2 e; G1 x* b# q4 L2 o
  ; open ‘cmd’ in the current directory
, D4 |& D5 H' q6 ?) G  ;
5 m' g1 N& u! T( }9 P7 g6 u  #c::+ n5 i* a% n/ g1 x$ b0 E' y
  OpenCmdInCurrent()- P( Z3 }. j& D( `  A- c; H0 L2 V
  return6 w! b) }# s) V$ R3 j4 j& D
  #IfWinActive
( U0 P1 w8 w7 x+ U  ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
7 L; s) m) ?8 K0 m6 [* g( y  ; Note: expecting to be run when the active window is Explorer.
7 W. l: G1 t) f9 g2 q+ v5 _/ s; c  ;! E, Z* L% Q# M  ?" ?
  OpenCmdInCurrent()
% A7 D" |" a; p6 N& @+ s! a  {
; L+ g1 r7 N# M& j  ; This is required to get the full path of the file from the address bar
6 p4 E  u6 f  ~  _' R8 m$ z+ X! T  WinGetText, full_path, A8 i% U8 C0 h, H+ Y, F7 P' V$ M! _, |
  ; Split on newline (`n)& ?4 o) Z$ l' ~8 l% M) N
  StringSplit, word_array, full_path, `n
# P+ X7 F8 b2 {8 Y4 W0 e  ; Take the first element from the array- H0 S* x. j7 W
  full_path = %word_array1%
* Q7 R* x0 ~/ a7 Q/ q2 v/ {" I; ~  ; strip to bare address$ M( [& C  e2 q+ O$ C( Q, k9 Z
  full_path := RegExReplace(full_path, “地址: “, “”)
5 i: _. L5 y1 Q$ M9 M0 z  ; Just in case – remove all carriage returns (`r)
) Q; T' k! l3 J- |  StringReplace, full_path, full_path, `r, , all
  T7 K0 E' p6 E9 E/ P  t  IfInString full_path, \9 b# o( e; a. o- l, |
  {
5 S2 ^7 s& y6 z9 I% ~  Run, cmd /K cd /D “%full_path%”2 F! O" |- I9 [1 c% l0 s) f
  }
2 `3 x- N. ^( G  else
/ n- M  I4 k8 I  {
6 g' s1 g9 e% ^4 T  Run, cmd /K cd /D “C:\ ”' ]5 @& ^  x$ L
  }
# I4 i/ o# @% y3 A1 T# k! V  }
' T* X; H. B8 [1 G% E; k  把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。+ D4 Z& d0 w1 `! T; w2 {! G4 t: x% I8 v' @
  这段小代码肯能有两个你需要修改的地方
1 O1 g3 K' w% b4 C  1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键8 u- W) T, C8 t$ [( f- m' j
  2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “+ H* q5 A) Z- }6 s: V9 S5 M! h
回复

使用道具 举报

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

本版积分规则

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

浙公网安备 33032402001025号

GMT+8, 2026-5-15 08:42 , Processed in 0.055397 second(s), 22 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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