Posted on
2004-11-09 09:59
charcs
阅读(1177)
评论()
收藏
举报
1,使 2000 和 xp 系统支持 137G 以上的硬盘.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\atapi\Parameters]
- "EnableBigLba"=dword:00000001
|
2,关闭光驱、硬盘的自动运行特性.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
- "NoDriveTypeAutoRun"=hex:BD,00,00,00
|
3,打开光驱、硬盘的自动运行特性.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
- "NoDriveTypeAutoRun"=hex:95,00,00,00
-
|
4,关闭磁盘空间不足的警告.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
- "NoLowDiskSpaceChecks"=dword:00000001
|
5,打开磁盘空间不足的警告.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
- "NoLowDiskSpaceChecks"=dword:00000000
|
6,关闭系统文件保护.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Winlogon]
- "SFCDisable"=dword:FFFFFF9D
|
7,打开系统文件保护.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Winlogon]
- "SFCDisable"=dword:00000000
|
8,开启 在这里打开命令行窗口.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- ;现在将给文件夹的右键菜单中添加“在这里打开命令行窗口”的命令
- [HKEY_CLASSES_ROOT\Directory\shell\cmd]
- @="在这里打开命令行窗口"
- [HKEY_CLASSES_ROOT\Directory\shell\cmd\command]
- @="cmd.exe /k \"cd %L\""
|
9,关闭 在这里打开命令行窗口.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [-HKEY_CLASSES_ROOT\Directory\shell\Cmd]
-
- [-HKEY_CLASSES_ROOT\Drive\shell\Cmd]
-
|
10,关闭默认共享.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
- "AutoShareWks"=dword:00000000
-
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
- "restrictanonymous"=dword:00000001
|
11,打开默认共享.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
- "AutoShareWks"=dword:00000001
-
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
- "restrictanonymous"=dword:00000000
|
12,启用错误报告.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
- "DoReport"=dword:00000001
|
13,禁用错误报告但在发生严重错误时通知我.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
- "DoReport"=dword:00000000
|
14,恢复加载多余的DLL文件.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
- "AlwaysUnloadDLL"=dword:00000000
|
15,不加载多余的DLL文件.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
- "AlwaysUnloadDLL"=dword:00000001
|
16,为右键加上复制到和移动到键.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex]
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex\ContextMenuHandlers]
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
- @="{ C2FBB630-2971-11D1-A18C-00C04FD75D13 }"
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
- @="{ C2FBB631-2971-11D1-A18C-00C04FD75D13 }"
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex\ContextMenuHandlers\Send To]
- @="{ 7BA4C740-9E81-11CF-99D3-00AA004AE837 }"
-
|
17,清除启动项.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- ;清除启动项
- [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
-
- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
-
|
18,把IE可同时下载数目增到10.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
- "MaxConnectionsPer1_0Server"=dword:0000000a
- "MaxConnectionsPerServer"=dword:0000000a
|
19,删除快捷方式的箭头.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CLASSES_ROOT\lnkfile]
- "IsShortcut"=-
-
|
20,加快菜单显示速度.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CURRENT_USER\Control Panel\Desktop]
- "MenuShowDelay"="0"
-
-
|
21,EXE关联文件修复.reg
| 代码 |
-
- Windows Registry Editor Version 5.00
-
- [HKEY_CLASSES_ROOT\exefile\shell\open\command]
- @="\"%1\" %*"
-
|
22,删除系统自带的墙纸、屏幕保护及开始菜单不用的快捷方式.bat
下载