由 Ghelper 引发的 Win11 凭证管理器失效
更新了 Ghelper 之后,电脑的凭证管理器失效了,每次重启大部分的账户都要重新登录。查询后可能是由 Windows 的一个 bug 所导致。
在最近的 W10 更新中,少数计算机中的 Credential Manager 出现故障,365 名用户感到沮丧 |Technibble 论坛 — Credential Manager broken in a handful of computers in recent W10 updates, 365 users frustrated | Technibble Forums
So those old tasks were interfering with the existing cleanup the modern auth system does on its own. In effect, the scheduled task was deleting the credentials every 15min.
做法是在管理员 Powershell 中,输入
1 | Get-ScheduledTask | foreach { If (([xml](Export-ScheduledTask -TaskName $_.TaskName -TaskPath $_.TaskPath)).GetElementsByTagName("LogonType").'#text' -eq "S4U") { $_.TaskName } } |
查询冲突的计划任务,发现是 Ghelper Charge,最后在计划任务中更改为登录后启用。