您的位置:首页 > 其它

添加一个右击命令行提示符

2006-05-26 13:22 309 查看
If a user types CMD in Windows 2000 to open a CLI (command-line prompt), the CLI opens in the Documents and Settings subfolder for the currently logged-in user. This usually isn't the most convenient place to start a CLI, however. Many people need to open a CLI in an arbitrary folder, and would like to be able to do so without having to type a CD command to change into the folder. With long pathnames, this can be cumbersome and time-consuming.

Windows 2000 has a hidden way to allow an administrator to enable a right-click context menu option to launch a CLI from a particular folder. It can be created on a system after installation, or made part of a system image and rolled out as a standard feature.

To add a right-click CLI context menu option to a system, open the Registry and create a subkey named DosHere in \HKEY_CLASSES_ROOT\Directory\Shell. Rename the existing (Default) REG_SZ value to Dos &Prompt Here (note the & sign). Inside this key, create a subkey called Command and edit its (Default) value. Leave the name of the value as "(Default)" but set the value to:
%SystemRoot%\System32\cmd.exe /k cd "%1".
(Be sure to substitute the name of your system root (e.g. C:) for the %SystemRoot% parameter in the above statement.)
Do the same as above in[/b] \HKEY_CLASSES_ROOT\Drive\Shell[/b]. This will allow you to do the same thing for a drive icon as well as a folder; the two Registry edits operate entirely independently of each other.
Serdar Yegulalp is the editor of the Windows 2000 Power Users Newsletter. Check out his Windows 2000 blog for his latest advice and musings on the world of Windows network administrators – please share your thoughts as well!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐