惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Spread Privacy
Spread Privacy
H
Hacker News: Front Page
PCI Perspectives
PCI Perspectives
Webroot Blog
Webroot Blog
罗磊的独立博客
H
Heimdal Security Blog
TaoSecurity Blog
TaoSecurity Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
Last Week in AI
Last Week in AI
美团技术团队
Help Net Security
Help Net Security
The Hacker News
The Hacker News
C
Cisco Blogs
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
The Register - Security
The Register - Security
IT之家
IT之家
WordPress大学
WordPress大学
Jina AI
Jina AI
Recent Commits to openclaw:main
Recent Commits to openclaw:main
H
Help Net Security
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Threat Research - Cisco Blogs
P
Proofpoint News Feed
NISL@THU
NISL@THU
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
Scott Helme
Scott Helme
V
Vulnerabilities – Threatpost
B
Blog
T
Tenable Blog
博客园 - 三生石上(FineUI控件)
T
The Exploit Database - CXSecurity.com
S
Security Affairs
小众软件
小众软件
Hacker News: Ask HN
Hacker News: Ask HN
Security Latest
Security Latest
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
W
WeLiveSecurity
A
Arctic Wolf
L
LINUX DO - 热门话题
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence

博客园 - FlyWithMyHeart

VS2010修改 向最具争议的萨芬说再见 这个男人从此自由 不找借口找方法——成功者都有的基本素质 胜读十年书 时延与传输速率、带宽延时 励志醒世[不断更新] [转]手机开发平台指南、教程和资料介绍(修改稿) 小心!六大原因让你不知不觉长胖 人生道路上的100个真相[转] 七秘诀工作效率与薪水翻番 [转] [转]C++多线程调试和测试的注意事项 有关认证方面的资料 fprintf和fwrite的区别 DSP开发 人生失败的31种原因 [转]一个经典回帖 [转]从月薪3500到身价700万的辛酸奋斗的经验 三十岁以前不必在乎的29件事[转] 未婚男子健康生活100条感悟[转]
[转]在资源管理器中使鼠标右键增加一个命令,运行cmd,同时使得当前路径为资源管理器当前的目录
FlyWithMyHeart · 2010-03-31 · via 博客园 - FlyWithMyHeart

[转]在资源管理器中使鼠标右键增加一个命令,运行cmd,同时使得当前路径为资源管理器当前的目录

http://www.cnblogs.com/skywind/archive/2009/05/22/1487138.html

1,找开注册表编辑器;
2,找到HKEY_CLASSES_ROOT\Folder\shell;
3,在“编辑”下选择“新建”下面的“项”,输入随便什么名字,例如可以是cmd;
4,在cmd下再选择“新建”下面的“项”,输入名字command(注意要小写);
5,双击cmd的默认值,输入一个字符串,这个字符串就是日后在右键菜单上出现的字符串,例如可以输入:“进入命令行方式”;用户也可以使用&加入快捷键,这个约定和VB或VC中的一样,这里就不多说了;
6,再移动到command,同样在默认值下面输入cmd.exe /k cd "%1",例如可以是cmd.exe /k cd "%1",这里我们可以用"%l"(字母L)代替"%1"(数字1),这将支持长文件名;
7,关闭注册表编辑器就可以了。不用重新启动计算机的.