The issue you are experiencing with the Volume Shadow Copy Service (VSS) failing to create snapshots and the associated errors, particularly the semaphore timeout (0x80070079), can be attributed to several potential causes. Here are some steps and considerations to help diagnose and possibly resolve the problem:
- Resource Availability: Since VSS operations can be sensitive to system resource availability, ensure that there are no other processes consuming excessive CPU or memory during the snapshot creation. You may want to monitor system performance while attempting to create a snapshot.
- VSS Writer Status: Although you mentioned that all VSS writers report a stable state, it can be beneficial to double-check this by running the command
vssadmin list writersin an elevated command prompt. Ensure that all writers are listed without errors. - Shadow Storage Configuration: You noted that shadow storage is configured and resized to 30 GB. Ensure that this space is not being exhausted during the snapshot process. You might consider increasing the shadow storage size temporarily to see if it resolves the issue.
- Event Viewer Logs: The specific Event IDs you mentioned (12289 for VSS and 67, 30 for volsnap) can provide more context. Event ID 12289 indicates a problem with the VSS service, while volsnap errors may point to issues with the volume itself. Investigate these logs further for any additional error messages or warnings that could indicate the root cause.
- Disk Health and File System: You confirmed that the disk health is normal and that there are no file system errors. However, it might be worth running a more thorough disk check or using tools like
chkdsk /fto ensure there are no hidden issues. - Minifilter Drivers: The loaded minifilter drivers (mrigflt, WdFilter, gameflt) should be examined to ensure they are not interfering with VSS operations. If possible, try disabling these drivers temporarily to see if it affects the snapshot creation.
- System Restore Configuration: Since System Restore hangs indefinitely, check the System Protection settings for the C: drive. Ensure that System Restore is enabled and configured correctly, as misconfigurations can affect VSS operations.
- Windows Updates and Patches: Ensure that your Windows 11 installation is fully updated. Sometimes, specific updates can resolve underlying issues with system services like VSS.
If these steps do not resolve the issue, consider gathering additional logs or diagnostics, such as VSS debug logs, which can provide deeper insights into what might be causing the failures. You may also want to consult Microsoft support for more specialized assistance.
References: