I may have found a work-around that seems to have stopped the post-2004 update-induced Outlook forgotten passwords as well as the OneDrive not signing on when a user logs on. Don't know if it really is "fixed", but neither condition has occurred for the
past three days. What I did:
1. Ran the "services" app and for "Credential Manager" changed the Startup Type from "manual" to "automatic". This did not completely correct the forgotten password problems, but did make them occur less frequently.
2. Next day, created this .cmd file and defined a Task Scheduler task to run it every hour.:
rem Stop and Start Credential Manager
rem This is an attempt to work around an error introduced in
rem Windows 10 update 2004 wherein passwords for
rem OneDrive and Outlook Email accounts were frequently forgotten
NET STOP "Credential Manager"
timeout 10
NET START "Credential Manager"
timeout 3
If you try this:
- Make sure to check "Run with highest privileges" in the General section since these NET commands require administrative privileges
- For the initial execution, under "Triggers" set the start time 3 or 4 minutes later than the current time. I did not do this at first, and when I checked to see if the file had run, it had not.