.reg
文件,用于优化 Windows 硬盘速度的一些设置
Windows Registry Editor Version 5.00
; 优化硬盘性能
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
"EnableOpLocks"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters]
"EnablePersistentConnections"=dword:00000001
; 禁用索引服务 (可选)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search]
"SetupCompletedSuccessfully"=dword:00000000
; 启用写缓存
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Disk]
"DisableWriteCache"=dword:00000000
其他优化设置
-
优化系统分页文件
- 适当配置页面文件可以提高系统性能。默认情况下,Windows 会管理页面文件大小,但你也可以手动设置。
-
关闭系统恢复(如果不需要)
- 对于某些用户,关闭系统恢复可以释放磁盘空间并提高性能。
-
调整 NTFS 文件系统设置
- NTFS 有一些高级设置可以优化性能,例如禁用压缩、加密等功能。
示例 .reg
文件
将以下设置添加到你的 .reg
文件中:
; 调整分页文件设置(建议根据实际情况调整)
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"PagingFiles"="C:\\pagefile.sys 2048 4096"
; 关闭系统恢复(可选)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]
"DisableConfig"=dword:00000001
"DisableSR"=dword:00000001
; 禁用磁盘压缩
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"NtfsDisableCompression"=dword:00000001
Windows Registry Editor Version 5.00
; 调整分页文件设置
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"PagingFiles"="C:\\pagefile.sys 2048 4096"
; 关闭系统恢复(可选)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]
"DisableConfig"=dword:00000001
"DisableSR"=dword:00000001
; 禁用磁盘压缩
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"NtfsDisableCompression"=dword:00000001
; 关闭 Windows 索引服务
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search]
"SetupCompletedSuccessfully"=dword:00000000
; 禁用休眠功能
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power]
"HibernateEnabled"=dword:00000000
; 加速 USB 存储设备的性能
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor]
"Start"=dword:00000003
; 优化 TCP/IP 设置
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
"TcpTimedWaitDelay"=dword:0000001E
"MaxUserPort"=dword:0000FFFE
; 关闭不必要的视觉效果
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000002
; 提高网络速度
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
"EnableSecuritySignature"=dword:00000000
"RequireSecuritySignature"=dword:00000000
硬盘优化相关的 .reg
文件示例
Copy Code
Windows Registry Editor Version 5.00
; 优化文件系统性能
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"NtfsDisableLastAccessUpdate"=dword:00000001 ; 禁用最后访问时间更新,提高性能
; 加快磁盘写入速度
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
"EnableOplocks"=dword:00000001 ; 启用 Oplocks 提高网络磁盘性能
; 禁用 Windows 系统的自动碎片整理(如果使用 SSD)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
"Enable"="N"
; 设置系统默认分页文件大小
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"PagingFiles"="C:\\pagefile.sys 2048 4096" ; 根据需求调整分页文件大小
; 优化 SSD 性能(确保 TRIM 启用)
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Msahci]
"Start"=dword:00000000 ; 启用 AHCI 模式以优化 SSD 性能
; 关闭不必要的服务(可根据需要调整)
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]
"Start"=dword:00000004 ; 禁用 Windows 时间服务
; 调整资源管理器的加载
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"FolderContents"=dword:00000001 ; 显示文件夹内容以提高响应速度
标签:CurrentControlSet,Windows,HKEY,MACHINE,dword,LOCAL,reg,硬盘 From: https://www.cnblogs.com/suv789/p/18438166