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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
The Last Watchdog
The Last Watchdog
T
Tenable Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
Simon Willison's Weblog
Simon Willison's Weblog
V
Vulnerabilities – Threatpost
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
A
Arctic Wolf
云风的 BLOG
云风的 BLOG
Know Your Adversary
Know Your Adversary
P
Palo Alto Networks Blog
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
MyScale Blog
MyScale Blog
B
Blog
Spread Privacy
Spread Privacy
S
Schneier on Security
Project Zero
Project Zero
L
LINUX DO - 热门话题
M
MIT News - Artificial intelligence
F
Full Disclosure
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
Cyberwarzone
Cyberwarzone
AWS News Blog
AWS News Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
C
Cybersecurity and Infrastructure Security Agency CISA
Hugging Face - Blog
Hugging Face - Blog
Security Latest
Security Latest
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Tailwind CSS Blog
K
Kaspersky official blog
Recent Announcements
Recent Announcements
NISL@THU
NISL@THU
Cisco Talos Blog
Cisco Talos Blog
S
Securelist
P
Privacy & Cybersecurity Law Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Exploit Database - CXSecurity.com
V
Visual Studio Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Webroot Blog
Webroot Blog

操作系统 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即可。

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