Featured image of post Win10 开机任务栏卡顿修复:注册表禁用 Windows Feeds 一招搞定

Win10 开机任务栏卡顿修复:注册表禁用 Windows Feeds 一招搞定

Windows 10 整合"任务栏资讯和兴趣"导致开机任务栏卡死的根因分析与修复:注册表新增 EnableFeeds 策略项彻底关停

一、为什么 Win10 任务栏"开机卡半天"

Win10 1903 起微软在任务栏上整合了"资讯和兴趣"(News and Interests)——天气 + 股票 + 体育新闻实时滚动显示。它基于 Edge 浏览器内核

  • 任务栏右下角多出一个天气图标鼠标悬停会展开新闻)
  • 渲染数据来自微软海外服务器ntp.msn.com 等)
  • 国内网络访问慢任务栏卡死、鼠标飘、CPU 飙高

问题现象

  1. 开机后任务栏3-5 分钟无法点击
  2. 鼠标悬停天气图标 → 任务栏卡 5-10 秒
  3. Edge 相关进程后台占 CPU

根因

  • 资讯内容请求走 Edge WebView2 / WebKit 内核
  • 服务器在海外国内访问超时
  • 后台轮询刷新——超时 + 重试 → 任务栏主线程卡住

二、解决方案对比

方案效果风险
关资讯和兴趣开关部分缓解Win10 21H2 之后此开关被删
卸载 Edge 浏览器会破坏 WebView2——很多现代应用依赖(Office / VS Code)不推荐
注册表禁用 Windows Feeds彻底——只是关掉资讯和兴趣
hosts 屏蔽 ntp.msn.com缓解要定期更新域名列表
重装系统到 LTSC彻底2024 年 LTSC 仍带此问题——2025+ Win11 已取消

推荐方案注册表禁用 Windows Feeds——一招搞定,永久生效

三、注册表修复

3.1 步骤

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
1. Win+R → 输入 regedit → 回车
2. 定位到:
   计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows
3. 在 Windows 上右键 → 新建 → 项
4. 命名为:Windows Feeds
5. 在 Windows Feeds 上右键 → 新建 → DWORD (32位) 值
6. 命名为:EnableFeeds
7. 双击 EnableFeeds → 数值数据改为 0
8. 基数:十六进制
9. 关机 → 重启

3.2 PowerShell 一行命令

1
2
3
4
5
6
# 创建项
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds" -Force

# 设置值
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds" `
    -Name "EnableFeeds" -Value 0 -Type DWord

重启

1
Restart-Computer

3.3 reg 文件

保存为 disable_feeds.reg,双击导入:

1
2
3
4
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds]
"EnableFeeds"=dword:00000000

3.4 验证生效

重启后:

  • 任务栏右下角天气图标消失
  • services.mscWindows推送通知系统服务(WAP Push Message Routing Service) 等可能停止
  • Edge 浏览器不受影响——只关掉了任务栏嵌入的资讯模块

四、问题根因:Windows Feeds 是什么

Windows Feeds 是 Win10 引入的统一内容订阅框架——

  • 任务栏资讯和兴趣 = 它的"任务栏嵌入组件"
  • 开始菜单的"推荐" = 也走 Windows Feeds
  • Cortana 资讯卡 = 也走 Windows Feeds

EnableFeeds = 0全局禁用所有 Windows Feeds 组件——不只任务栏但实际只影响任务栏——开始菜单的"推荐"SubscribedContent-338389 单独控制。

五、相关注册表项

5.1 关掉开始菜单"推荐"

1
2
3
4
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager
→ SubscribedContent-338388Enabled = 0
→ SubscribedContent-338389Enabled = 0
→ SilentInstalledAppsEnabled = 0

5.2 关掉锁屏"提示和技巧"

1
2
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent
→ DisableWindowsConsumerFeatures = 1

5.3 关掉 OneDrive 广告 / 推广

1
2
3
4
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager
→ SilentInstalledAppsEnabled = 0
→ OemPreInstalledAppsEnabled = 0
→ PreInstalledAppsEnabled = 0

5.4 一键脚本:关掉所有"建议 / 推荐"

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
$paths = @(
    "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager"
)

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" `
    -Name "SubscribedContent-338388Enabled" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" `
    -Name "SubscribedContent-338389Enabled" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" `
    -Name "SilentInstalledAppsEnabled" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" `
    -Name "OemPreInstalledAppsEnabled" -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" `
    -Name "PreInstalledAppsEnabled" -Value 0

# 重启资源管理器
Stop-Process -Name explorer -Force
Start-Process explorer

六、备选:hosts 屏蔽

如果注册表修复仍没完全解决极少数情况),可以加 hosts 屏蔽

1
2
3
4
5
6
7
8
# Windows Feeds / 资讯和兴趣
0.0.0.0 ntp.msn.com
0.0.0.0 www.msn.com
0.0.0.0 c.msn.com
0.0.0.0 sb.scorecardresearch.com
0.0.0.0 live.com
0.0.0.0 outlook.com
0.0.0.0 api.msn.com

hosts 路径:C:\Windows\System32\drivers\etc\hosts

编辑 hosts 需要管理员权限——用 VS Code 管理员打开或者**notepad C:\Windows\System32\drivers\etc\hosts**。

七、Win11 22H2 之后

Win11 22H2 之后任务栏彻底重构——“资讯和兴趣"功能被整合到 Microsoft Account 区域

  • 任务栏天气图标仍然存在——但不再卡顿改成本地缓存 + 后台轮询
  • 注册表 EnableFeeds = 0 仍然有效——关掉天气图标显示

Win11 23H2 / 24H2 把天气图标默认关掉了(微软终于承认这是个失败设计)。

八、常见 5 个坑

  1. EnableFeeds = 0 没生效——没重启必须重启——只重启 explorer.exe 不行
  2. 天气图标仍在——没创建 Windows Feeds 项要先 New-Item 创建项再设值)
  3. 开始菜单"推荐"还在——这个不是 EnableFeeds 控制要改 ContentDeliveryManager 下的键
  4. Edge 浏览器被卸载——WebView2 跑不起来——Outlook / Office 部分功能失效——别卸载 Edge
  5. 重启后任务栏布局变了——正常注册表修改导致系统重新生成任务栏布局)——重新钉一下应用

九、Win10 21H2+ “资讯和兴趣"开关

Win10 1903-21H1 可以直接关:

1
任务栏右键 → 资讯和兴趣 → 关

Win10 21H2+ 这个菜单被删了——只能注册表 / 组策略关

1
2
gpedit.msc → 计算机配置 → 管理模板 → Windows 组件 → 新闻和兴趣
→ 启用"新闻和兴趣" → 选 "已禁用"

Home 版没有 gpedit.msc —— 走注册表 是唯一路径。

十、Win10 / Win11 LTSC 怎么办

Win10 LTSC 2019 / 2021 / IoT 默认没有"资讯和兴趣”——

  • Corteana 被砍
  • Edge 默认是 Chromium 版——没带天气图标
  • Microsoft Store 默认不装

如果手动装了 Microsoft Store网上有强制安装脚本),会带任务栏天气——仍然要 EnableFeeds = 0

十一、总结

  • 根因 = 任务栏"资讯和兴趣"走 Edge 内核 + 海外服务器国内慢) + 后台轮询 = 任务栏卡
  • 解法 = HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Feeds + EnableFeeds=0 + 重启
  • Win10 21H2+ 没图形开关——只能注册表 / 组策略
  • Win11 23H2+ 微软自己默认关掉了——所以这个问题是 Win10 时代的经典
  • 顺带关掉:开始菜单"推荐”、锁屏"提示和技巧"、OEM 预装应用推广

参考资料

使用 Hugo 构建
主题 StackJimmy 设计