Hello @Jaavenor - this is a known Microsoft bug/issue, and some call it password "amnesia". It is a subtle bug in a scheduled task on some configurations, that ends up erasing a password decrypt key in LSASS:
Until Microsoft delivers a fix, its recommended workaround involves right-clicking the Windows 10 Start Button and selecting Windows PowerShell (Admin). If not there, right-click on the Start Button, select Command Prompt (Admin) then key in powershell. It depends on how your "start" is set up.
Microsoft then recommends:
- Copy and paste the command below into Windows PowerShell and press Enter.
- Get-ScheduledTask | foreach { If ((xml).GetElementsByTagName("LogonType").'#text' -eq "S4U") { $_.TaskName } }
- If you see any Tasks listed from the PowerShell output, make a note of them.
Next, go to Windows Task Scheduler and disable any tasks you found from the above command. Follow these steps:
- In the Windows 10 Search box, type Task Scheduler and then open the Task Scheduler app.
- Locate the task in the Window (e.g.HP Customer participation), or other task from the Windows PowerShell output.
- Right-click the task and choose Disable.
- After you disable the task, restart Windows.
Microsoft notes that users may need to re-enter missing passwords one more time before it is saved again.