惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
Intezer
C
Cyber Attacks, Cyber Crime and Cyber Security
The Register - Security
The Register - Security
量子位
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
MyScale Blog
MyScale Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
Jina AI
Jina AI
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
SecWiki News
SecWiki News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
宝玉的分享
宝玉的分享
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
有赞技术团队
有赞技术团队
T
Tor Project blog
H
Hacker News: Front Page
A
Arctic Wolf
NISL@THU
NISL@THU
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
V
V2EX
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
I
InfoQ
D
Docker
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42

操作系统 on 老刘博客

暂无文章

解决Windows11打开安全中心空白的方法
老刘 · 2024-08-29 · via 操作系统 on 老刘博客

老刘在前面一篇文章中说,某年某月的某一天,老刘重置了电脑,不但丢失了存在本地的博客数据,而且发现安全中心打开是一个空白的窗口。老刘使用了重启大法的手段,但是发现并没有什么卵用。文心一言里给出了很多的建议,满满的一大页,照着做了下,问题还是没有解决。

不得以,老刘还是去搜索引擎上找方法吧,有一些方法大同小异,只到看到了一篇文章,说把一段代码保存成reg的格式,双击导入注册表即可。老刘试用了一下,完美解决了问题。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
Windows Registry Editor Version 5.00

  [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]

  “DisableAntiSpyware”=dword:00000000

  [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection]

  “DisableBehaviorMonitoring”=dword:00000000

  “DisableIOAVProtection”=dword:00000000

  “DisableOnAccessProtection”=dword:00000000

  “DisableRealtimeMonitoring”=dword:00000000

  [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SecurityHealthService]

  “Start”=dword:00000002

使用方法

  • 桌面新建一个文本文件,把上述代码拷贝进去。然后另存为,类型选择所有文件,名称设置为aaa.reg。
  • 双击aaa.reg文件,导入注册表即可

这是一个bug

老刘有一次重置电脑,发现这个方法不能用了,其实这个Windows11的一个bug,不知道为什么一直没有修复,重新安装一下md即可。

文件老刘放在下面了: 点击下载