社区
Windows Server
帖子详情
请问如何增加open command prompt here 右键菜单?
ccmouse
2002-05-06 02:46:55
这个问题困扰我许久了,也看到几次,只是没记住,倒!
...全文
244
4
打赏
收藏
请问如何增加open command prompt here 右键菜单?
这个问题困扰我许久了,也看到几次,只是没记住,倒!
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
4 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
ccmouse
2002-05-07
打赏
举报
回复
谢谢。
spark_li
2002-05-06
打赏
举报
回复
这里有个驱动
;
; "CMD Prompt Here" PowerToy
;
; Copyright 1996 Microsoft Corporation
;
[version]
signature="$CHICAGO$"
[CmdHereInstall]
CopyFiles = CmdHere.Files.Inf
AddReg = CmdHere.Reg
[DefaultInstall]
CopyFiles = CmdHere.Files.Inf
AddReg = CmdHere.Reg
[DefaultUnInstall]
DelFiles = CmdHere.Files.Inf
DelReg = CmdHere.Reg
[SourceDisksNames]
55="CMD Prompt Here","",1
[SourceDisksFiles]
CmdHere.INF=55
[DestinationDirs]
CmdHere.Files.Inf = 17
[CmdHere.Files.Inf]
CmdHere.INF
[CmdHere.Reg]
HKLM,%UDHERE%,DisplayName,,"%CmdHereName%"
HKLM,%UDHERE%,UninstallString,,"rundll32.exe syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132 %17%\CmdHere.inf"
HKCR,Directory\Shell\CmdHere,,,"%CmdHereAccel%"
HKCR,Directory\Shell\CmdHere\command,,,"%11%\cmd.exe /k cd ""%1"""
HKCR,Drive\Shell\CmdHere,,,"%CmdHereAccel%"
HKCR,Drive\Shell\CmdHere\command,,,"%11%\cmd.exe /k cd ""%1"""
[Strings]
CmdHereName="CMD Prompt Here PowerToy"
CmdHereAccel="CMD &Prompt Here"
UDHERE="Software\Microsoft\Windows\CurrentVersion\Uninstall\CmdHere"
你把上面的保存为file.inf就可以了,然后安装即可
WingAngel
2002-05-06
打赏
举报
回复
你可以在HKEY_CLASSES_ROOT\Directory\shell下新建名为rundos的主键,然后将其数据命名为open command prompt here ,然后在其下新建名为command的主键,并在默认栏内填入command。再重启,就可以了
WingAngel
2002-05-06
打赏
举报
回复
你想在什么地方加呢?
Command
prompt
here
Command
prompt
here exe, you can
open
command
window from explorer
Open
Folder 在资源管理器任一目录下打开命令行窗口
这是我找到的一个killer级工具,安装后会在资源管理器
右键
菜单
中添加
Open
Command
Prompt
Here... 对于经常需要在指定目录下打开命令行窗口的开发员来说,这个工具简直是必备品。 用过就知道有多好了。
Vista 优化策略及使用技巧
在Vista中,当按住SHIFT在右击某个目录,
右键
菜单
会多出一项“
Open
Command
Prompt
Here”,点击即可进入CMD命令行并以该目录为当前工作目录。 我们知道用Windows XP powertoy也可以在XP中启用相同的功能,不过Vista则是把这个颇为实用的功能直接内置了。
g++ for windows
Installing c++/g++ on Windows Disclaimer: This page is being maintained mainly for my students. Use these instructions at your own risk. There is no warranty in any form or shape whatsoever!. There is no guarantee that these instructions are up-to-date. With that understood you may continue with the rest of this page if you choose to accept these terms. This page was last updated on September 13, 2005, but still good as of April 30, 2009. Follow these steps to install g++ (the GNU C++ compiler) for Windows. There is no room for creativity here; you must follow the directions exactly. Pick the drive and a folder in which you want to install g++. I'll assume that it is C:, but you can choose a different one. If you choose a different drive or a different folder, you'll need to adapt the directions below accordingly. Download full.exe, an about 14 megabyte executable, to C:\full.exe by right-clicking on the link. Use Save Link As... or Save Target As... Be sure the browser saves the file as C:\full.exe. Run the downloaded executable. This will install g++ (and a lot of other things that you don't really need) on your hard drive. Go to the C: drive using Windows Explorer and double-click on full.exe. Or,
open
a DOS window (Start > Programs >
Command
Prompt
), connect to the C: drive using the cd
command
, and type full. Locate where the bin folder was created for the g++ installation. On my Windows XP machine, it was created in the following path: C:\cygnus\cygwin-b20\H-i586-cygwin32\bin You now should add it to the PATH environment variable. You do that by following: Start -> Control Panel -> System -> Advanced -> Environment Variables At this point you can see the PATH variable either in the User Variables or in the System Variables. Add the g++ path into the PATH variable. You add it to the end of the existing value separated by a semicolon (';'). Make sure that you do not lose the original value. You are just appending more to the end separated by a semicolon. Restart your computer. A Cygnus Solutions entry will appear in your Programs menu, and an icon may appear on your desktop. Don't use them! You will use it using the g++
command
on a DOS
prompt
as explained below. You should now be able to run g++ from a DOS (
Command
Prompt
) window. For example, to compile a file called C:\mine\hello.cpp, connect to the C:\mine folder and enter g++ -g hello.cpp -o hello -lm You'll then be able to run the compiled program by entering hello in the DOS window. If you've installed Emacs as described here, you will also be able to run g++ from Emacs. If, when you do this, Emacs tries to compile with the
command
make -k, you made a mistake during the Emacs installation. If you want to learn how to run g++ on emacs, see here. If you'd like to learn more about where this free compiler came from, we downloaded it from an older site of http://sourceware.org/cygwin/. If you wish to clean up a little, you may delete the file: full.exe at this point. Your g++ compiler is installed under C:\cygnus.
将Conda
Prompt
Here添加到
右键
菜单
如何将Conda
Prompt
Here添加到
右键
菜单
Conda是一个非常流行的Python的环境管理工具,在做项目的时候把它跟IDE整合在一起用来管理不同项目的环境会很方便,但是在日常使用Windows的过程中如果想用Python写点代码来完成重复性工作,就要在命令行里把Conda从默认目录一路切换到当前文件夹,让人觉得很麻烦。下面就介绍两种方法在
右键
菜单
中添加“Conda
Prompt
Here”来在当前目录打开Conda,省去切换目录的繁琐操作。
Windows Server
6,871
社区成员
177,987
社区内容
发帖
与我相关
我的任务
Windows Server
Windows 2016/2012/2008/2003/2000/NT
复制链接
扫一扫
分享
社区描述
Windows 2016/2012/2008/2003/2000/NT
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章