Hi William Lopez,
I’m following up to check whether the issue has been resolved. Feel free to reply if you need further information. If the information provided was helpful, please click "Accept Answer" to help others in the community. Thank you!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have several vss writers that keep failing. I can reset all but one of the services that fail. Then a short time later they all fail again. Not able to run backups because they keep failing. They all are working after a reboot of the server but shortly after they start to fail again.
Hi William Lopez,
I’m following up to check whether the issue has been resolved. Feel free to reply if you need further information. If the information provided was helpful, please click "Accept Answer" to help others in the community. Thank you!
Hi William Lopez,
VSS writers are sensitive to underlying system conditions, so when they keep failing shortly after a reboot, it usually points to resource exhaustion, driver conflicts, or a service dependency that isn’t staying healthy. One of the first steps I recommend is checking the Application and System event logs around the time the writers fail, as they often provide clues about which component is misbehaving. It’s also a good idea to run "vssadmin list writers" to confirm which writers are failing and whether they report specific error codes.
If you see consistent failures, try updating storage drivers, ensuring that the Volume Shadow Copy service and related services (like COM+ Event System) are running properly, and verify that you have enough free disk space on the volumes used for shadow copies. Sometimes antivirus or third‑party backup agents can interfere, so temporarily disabling them for testing can help isolate the issue. If the writers only stay healthy after a reboot but fail again quickly, that suggests a recurring condition rather than a one‑time corruption, so monitoring resource usage and service health over time is important.
I hope the response provided some helpful insight. If it clarified the issue for you, please consider marking it as Accept Answer so others with the same issue can find the solution.
Jason.
Use vssadmin list writers immediately after a backup failure to see which writers are failing and what error codes they report. Different error patterns point to different root causes.
vssadmin list writers shows writers in a Failed state with retryable or timeout-related errors (for example, 0x800423f4, 0x800423f3, 0x800423f2, or VSS_E_WRITERERROR_TIMEOUT / VSS_E_WRITERERROR_OUTOFRESOURCES), reduce system load during backup:
vssadmin list writers and identify which writers are Failed.VSS_E_WRITERERROR_RETRYABLE, retrying after restarting the hosting service is appropriate. If they continue to fail repeatedly, investigate that specific application’s logs and configuration.vssadmin list writers returns no writers at all and the Application log shows VSS errors such as:CoCreateInstance errorsThen repair the VSSEvent registration:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EventSystem\{26c409cc-ae86-11d1-b616-00805fc79216}\EventClasses\{FAF53CC4-BD73-4E36-83F1-2B23F46E513E}-{00000000-0000-0000-0000-000000000000}-{00000000-0000-0000-0000-000000000000}%systemroot%\system32\EVENTCLS.DLL
vssadmin list writers again and confirm writers are listed.If, after reducing load, correcting registry configuration (if needed), and restarting the relevant services, the same writers still fail repeatedly, focus on those specific writers (for example, SQL, NTDS, Exchange) and their own logs/configuration, as the failure may be within the application rather than VSS itself.
References: