I have the same crashes. The patch that is causing it is another one by now. I found out, that I could prevent the crashes by disabling the Microsoft Storageservice during startup. However the Storageservice is needed by Windows for Microsoft Storeapps (xBox Game Pass) and Windows Updates. So permanently disabling it is not a good idea.
Here is my current workaround:
- Create a Windows Task that is triggered by user login:
Program to start: Powershell.exe
Arguments:
-command "Set-Service -Name 'StorSvc' -StartupType Manual"
Execute with highest privileges (aka as Admin)
- Create a Shortcut on your desktop:
The target program is:
powershell.exe -command "Set-Service -Name 'StorSvc' -StartupType Disabled ; Stop-Computer"
(one line)
Name it like "Shutdown" coz that is what it will do.
Once you created the shortcut open it's properties and make it be executed "as Admin"
What this will do: You click the shortcut. It will disable the Storageservice (StorSvc) and shutdown your computer.
When you start the computer it will enable the StorSvc.
If you don't understand my instruction then it's not for you. It's for ppl that are at least a little tech savvy. I don't belong to Microsoft in anyway and what I wrote could download a virus right?
I'm just an annoyed user...