Hello Dmitry,
Thank you for posting question on Microsoft Windows Forum!
Based on the issue description as well as the provided error code 0xc000014d translating to STATUS_REGISTRY_QUOTA_LIMIT which might indicate that the Windows Registry has hit its maximum size limit or is failing to flush a transaction to disk during the VSS "Freeze" phase. This might be the reason why the Registry Writer is failing specifically with VSS_WS_FAILED_AT_FREEZE.
The suggestion is to run vssadmin list writers when the machine is idle and again right after a failure to confirm whether only Registry Writer is affected or to confirm Registry Writer state.
Another suggestion is to check for disk space and shadow storage. As VSS requires a "workspace" to store the snapshot metadata. If your system drive (C:) or the System Reserved partition is nearly full, the Registry Writer will fail during the "Freeze" event. You can check C: Drive to ensure that you have at least 10–15% free space. Also checking shadow storage by opening an elevated Command Prompt and run this command vssadmin list shadowstorage .If the "Maximum Storage" is too small or set to a fixed limit that is almost reached, try to increase it.
Since your Diskshadow test showed the writer in a FAILED_AT_FREEZE state, it might probably stay that way until the service is recycled. You can consider to restart the these services in this order COM+ System Application, Distributed Transaction Coordinator, Volume Shadow Copy Service (VSS) and Cryptographic Services.
Another point worth mentioning here is that since the Registry Writer is a core system component, corruption in the VSS binaries or the registry structure itself can cause this. Run these commands in an elevated prompt repair system files dism /online /cleanup-image /restorehealth and sfc /scannow
You can consult the following useful articles for further reference regarding your concerns.
- https://learn.microsoft.com/id-id/troubleshoot/windows-hardware/drivers/making-vss-shadow-copy-fails-error
- https://learn.microsoft.com/en-us/windows-server/storage/file-server/volume-shadow-copy-service
- https://learn.microsoft.com/en-us/troubleshoot/windows-server/backup-and-storage/no-vss-writers-listed-run-vssadmin-list
Hope the above information is helpful! If it is. Free feel to hit "Accepted" for benefitting others in community having the same issue too.