巧改注册表 让Windows系统实现更多功能

利用修改注册表文件,我们可以在“我的电脑”的右键菜单中增加“服务”项,这样就不用“控制面板”-“管理员工具”-“服务”这么麻烦的用鼠标点击了 。

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTCLSID{20D04FE0-3AEA-1069-A2D8-; ; 08002B30309D}shellservices]
@=hex(2):53,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,00,00
"SuppressionPolicy"=dWord:4000003c
[HKEY_CLASSES_ROOTCLSID{20D04FE0-3AEA-1069-A2D8-08002B30309D}shellservicescommand]
@=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73, 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00, 65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52, 00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00, 32,00,5c,00,73,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73, 00,63,00,20,00,2f,00,73,00,00,00
利用修改注册表文件,我们可以实现PowerToys中的“cmd here”功能,即在资源管理器中任意目录点击鼠标右键,出现“在这里打开命令行”选项,这样可以直接在cmd模式中进入该目录,对于中文目录尤其方便 。

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDirectoryshellcmd]
@="在这里打开命令行窗口"
[HKEY_CLASSES_ROOTDirectoryshellcmdcommand]
@="cmd.exe /k "cd %L""
【巧改注册表 让Windows系统实现更多功能】通过修改注册表可以禁用漫游Windows XP 窗口

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionAppletsTour]
"RunCount"=dWord:00000000
[HKEY_LOCAL_MacHINESoftwareMicrosoftWindowsCurrentVersionAppletsTour]
"RunCount"=dword:00000000

[ Last edited by geely on 2003-9-25 at 18:04 ]

可以允许为回收站重命名

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

HKEY_CLASSES_ROOTCLSID{645FF040-5081-101B-9F08-00AA002F954E}ShellFolder]
"Attributes"=hex:50,01,00,20
"CallForAttributes"=dword:00000000

[ Last edited by geely on 2003-9-25 at 18:04 ]

可以从我的电脑中删除那些烦人的共享文档文件夹

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

[-HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerMyComputerNameSpaceDelegateFolders{59031a47-3f72-44a7-89c5-5595fe6b30ee}]

[ Last edited by geely on 2003-9-25 at 18:04 ]

可以把Internet Explorer可同时下载的文件数目增大到10(默认是2)

按照如下格式用记事本编辑文本,保存为.reg格式 。

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet Settings]
"MaxConnectionsPer1_0Server"=dword:0000000a
"MaxConnectionsPerServer"=dword:0000000a

    推荐阅读