没有精简掉Windows Defender 也没删除相关的插件和组件 封装完成之后为什么用不了defender。各位da ge 能详细解答一下嘛

没有精简掉Windows Defender 也没删除相关的插件和组件 封装完成之后为什么用不了defender。各位da ge 能详细解答一下嘛

你看新建管理员账户登录后能不能使用?或者管理员powershell执行:
Get-AppXPackage *SecHealth* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
或重装所有UWP应用:
Get-AppxPackage -AllUsers | ForEach-Object {if ($_.InstallLocation) {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}}