Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决

前言

Windows11 越用越卡、磁盘常常 100%、内存莫名占满、开机慢、游戏掉帧,全是系统默认自带冗余功能在后台偷跑。本文整理 10 个必关隐藏设置,既有图文手动步骤,又附 PowerShell / 注册表 一键关闭代码,复制直接运行,免手动点点点。


前置说明

  1. 所有脚本右键开始菜单 → Windows 终端 (管理员) 运行
  2. 注册表代码保存为 .reg 双击导入
  3. 改完重启电脑全部生效

一、必关设置 + 手动步骤 + 一键代码

1. 关闭内存完整性 VBS(最大性能提升)

危害

默认开启虚拟化内核隔离,吃掉 10%~20% 性能,游戏卡顿、软件延迟、低配电脑直接拖垮。

手动路径

设置 → 隐私和安全性 → Windows 安全中心 → 设备安全性 → 内核隔离 → 关闭内存完整性 → 重启。

一键注册表关闭代码

保存为 关闭VBS.reg 双击导入:

reg

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlDeviceGuardScenariosHypervisorEnforcedCodeIntegrity]
"Enabled"=dword:00000000

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


2. 禁用 SysMain 超级预读(解决磁盘 100%)

危害

后台持续预读文件,疯狂读写硬盘,SSD 没必要,只会卡机。

手动

Win+R 输入 services.msc → 找到 SysMain → 停止 + 禁用。

PowerShell 一键关闭(管理员)

powershell

# 停止并禁用 SysMain
Stop-Service -Name SysMain -Force
Set-Service -Name SysMain -StartupType Disabled

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


3. 关闭透明效果 + 系统动画

危害

毛玻璃、窗口动画、淡入淡出,低配机吃显卡 + 内存。

手动

设置 → 个性化→颜色→关闭透明效果设置 → 辅助功能→视觉效果→关闭动画效果

注册表一键关闭

reg

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERControl PanelDesktopWindowMetrics]
"MinAnimate"="0"
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionThemesPersonalize]
"EnableTransparency"=dword:00000000

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


4. 禁用 Windows Search 索引服务

危害

全盘实时索引文件,常年磁盘占用高,普通用户根本用不到。

手动

services.msc → 找到 Windows Search → 停止 + 禁用。

PowerShell 一键关闭

powershell

Stop-Service -Name "WSearch" -Force
Set-Service -Name "WSearch" -StartupType Disabled

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


5. 关闭诊断数据 & 遥测上传

危害

后台偷偷收集使用习惯、上传数据,占网速 + CPU + 隐私泄露。

PowerShell 一键关闭

powershell

# 关闭遥测诊断
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesDataCollection" -Name AllowTelemetry -Value 0
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindowsDataCollection" -Name AllowDiagnosticData -Value 0

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


6. 关闭开始菜单推荐、广告、最近文件

手动

设置 → 个性化 → 开始 → 全部关闭推荐、最近应用、最近文件。

一键注册表关闭

reg

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced]
"StartMenuSuggestions"=dword:00000000
"HideRecentlyAddedApps"=dword:00000001
"HideMostUsedApps"=dword:00000001

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


7. 关闭后台应用自启权限

危害

微信、QQ、浏览器默认后台常驻,偷偷占内存。

PowerShell 批量限制后台应用

powershell

# 全局禁止应用后台运行
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionBackgroundAccessApplications" -Name GlobalUserDisabled -Value 1

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


8. 关闭传递优化(P2P 偷偷上传)

危害

Win11 默认 P2P 分享更新,偷偷当服务器上传流量、占网速、耗硬盘

一键注册表关闭

reg

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesDoSvc]
"Start"=dword:00000004

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


9. 关闭任务栏 Copilot + 小组件

危害

AI 助手、新闻天气小组件,后台常驻进程,吃内存几百 MB。

PowerShell 一键关闭

powershell

# 关闭Copilot
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" -Name ShowCopilot -Value 0
# 关闭小组件
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" -Name TaskbarDa -Value 0

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


10. 调整系统性能为「最佳性能」

手动

Win+R 输入 sysdm.cpl → 高级 → 性能 → 设置 → 勾选调整为最佳性能

注册表一键设置

reg

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERControl PanelDesktop]
"VisualEffects"=dword:00000001

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


二、整合:完整一键优化 PowerShell 脚本

新建 Win11优化.ps1,管理员终端运行:

powershell

# 1. 禁用 SysMain
Stop-Service -Name SysMain -Force -ErrorAction SilentlyContinue
Set-Service -Name SysMain -StartupType Disabled

# 2. 禁用 Windows Search
Stop-Service -Name WSearch -Force -ErrorAction SilentlyContinue
Set-Service -Name WSearch -StartupType Disabled

# 3. 关闭遥测诊断
Set-ItemProperty -Path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionPoliciesDataCollection" -Name AllowTelemetry -Value 0
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindowsDataCollection" -Name AllowDiagnosticData -Value 0

# 4. 关闭后台应用权限
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionBackgroundAccessApplications" -Name GlobalUserDisabled -Value 1

# 5. 关闭 Copilot 小组件
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" -Name ShowCopilot -Value 0
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" -Name TaskbarDa -Value 0

Write-Host "优化执行完成,请重启电脑生效!"

Windows11 10 个性能杀手设置|手动关闭教程 + 批量一键脚本解决


三、使用方法总结

  1. 注册表 .reg 文件:双击 → 确认导入
  2. PowerShell 脚本:右键管理员终端,拖拽文件运行
  3. 全部设置 + 脚本执行完 重启电脑
  4. 效果:内存释放、磁盘不再 100%、开机更快、软件秒开、游戏不卡顿

四、文末总结

Windows11 卡顿不是电脑配置差,是默认冗余功能太多后台偷跑。本文给了 10 项手动关闭步骤 + 注册表代码 + PowerShell 一键脚本,不用一个个手动找设置,复制代码直接批量关闭,新手也能一键优化系统。

© 版权声明

相关文章

1 条评论

none
暂无评论...