起因

群友在群里发了一个Windows安全中心的截图,里面提示“内存完整性已关闭。你的设备可能易受攻击”,所以咱也去看了一下发现这边也是同样遇到了这个问题

内存完整性

Windows 11 中的“内存完整性”是一项基于硬件虚拟化的安全功能,属于 核心隔离(Core Isolation) 的一部分,其本质是 Hypervisor-protected Code Integrity(HVCI)。它的主要作用是防止恶意代码注入到高权限内核进程中,从而增强系统安全性,尤其对抗内核级漏洞和 Rootkit 攻击。

内存完整性无法开启提示

无法开启原因

点进“查看不兼容的驱动程序”就能看到是因为什么驱动导致的无法开启了

不兼容的驱动程序列表

咱这边列出的驱动“hw”开头的都是由于之前折腾华为手机的时候,被华为助手装上去的,还有一个“PassGuard”是一个安全控件,不记得是什么时候装上的了,反正不影响系统,都能卸载

卸载不兼容的驱动

这些驱动基本能在以下两个目录找到

C:\Windows\System32\drivers
C:\Windows\System32\DriverStore\FileRepository

C:\Windows\System32\DriverStore\FileRepository的驱动只需要通过使用cmd管理员命令就能卸载了,下面是卸载hw驱动的命令

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_cdcacm.inf_amd64_3bc77d1a7c89b48d\hw_cdcacm.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\ew_usbccgpfilter.inf_amd64_e0a5af3fcbca936a\ew_usbccgpfilter.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_usbdev.inf_amd64_61f3379efae54146\hw_usbdev.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_quusbnet.inf_amd64_6556c2bfaa193697\hw_quusbnet.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_qumdm.inf_amd64_381f1dbf710aa60f\hw_qumdm.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_cdcmdm.inf_amd64_459020fbbead4b98\hw_cdcmdm.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_goadb.inf_amd64_ff1778e8038dd8e6\hw_goadb.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_quser.inf_amd64_6809606b1800173d\hw_quser.inf /uninstall

pnputil /delete-driver C:\Windows\System32\DriverStore\FileRepository\hw_gohdb.inf_amd64_d6df4e4355f7c3f7\hw_gohdb.inf /uninstall

请输入图片描述

如果不是和咱一样的情况是hw驱动的话,那么就需要自行搜索提示的不兼容驱动然后替换命令里面的文件地址即可


C:\Windows\System32\drivers的驱动通常是被占用的,以咱的情况为例,“ew_usbccgpfilter”和“PassGuard”就是在这里面的,而且无法直接删除,会提示在占用

不过处理起来也很简单暴力,直接剪切走即可

然后去Windows安全中心重新检测就可以开启了

最后修改:2025 年 05 月 07 日
我很可爱,请给我钱(bushi)