T The Triage ManualTechnical Guides for IT Emergencies
P2 · Backup & Recovery

VSS Snapshot Timeout Failures — Veeam/Acronis/Commvault Backups Fail After Spring 2026 Windows Updates (24H2/25H2/Server 2022/2025)

Following the April/May 2026 Windows Update cycles, enterprise backup jobs on Windows 11 (24H2/25H2) and Windows Server 2022/2025 fail abruptly mid-execution because the updates altered I/O freeze-and-thaw timers, causing third-party backup engines (Veeam, Acronis, Commvault) to exceed hard VSS execution timeouts. VSS writers enter a Failed [7] or Timed out [9] state, and Event IDs 12289 and 8193 appear in the System log coinciding with job failures. The immediate workaround is restarting the Volume Shadow Copy (VSS) and COM+ System Application (COMSysApp) services; longer-term remediation requires vendor-specific patches and/or tuning the VssTimeout registry DWORD value. The regression leaves environments without valid backup coverage, creating significant compliance and audit risk.

Indicators

Likely causes

Diagnostic steps

  1. Immediately after a failed backup job, open an elevated command prompt and run: vssadmin list writers
    Identify which VSS writers are in a Failed [7] or Timed out [9] state, confirming VSS is the failure point rather than the backup agent network or repository layer
  2. Query the System event log for VSS error events coinciding with the backup failure window. In an elevated PowerShell session run: Get-WinEvent -LogName System | Where-Object { $_.Id -eq 12289 -or $_.Id -eq 8193 } | Select-Object TimeCreated, Id, Message | Sort-Object TimeCreated -Descending | Select-Object -First 20
    Confirm VSS-specific error Event IDs 12289 and 8193 are present and correlate timestamps with the failed backup window, distinguishing timeout-driven failures from other VSS subsystem faults
  3. Verify Spring 2026 Windows updates are installed on the affected host. Run in PowerShell: Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 20 — or check Settings > Windows Update > Update History for April/May 2026 cumulative updates
    Confirm the Spring 2026 regression patch is the trigger, ruling out pre-existing VSS configuration drift, storage-layer issues, or unrelated backup agent faults
  4. Review backup software logs for explicit VSS timeout error messages and note the exact timeout threshold reported: Veeam Backup & Replication console (Job > Statistics > View Log), Acronis Management Console (Activities log), or Commvault CommCell Console (Job Controller > View Events)
    Determine which backup engine and VSS writer combination is failing, and obtain the exact timeout duration to guide registry tuning and vendor KB cross-referencing
  5. Cross-reference findings against vendor support portals (Veeam KB, Acronis Support, Commvault documentation) and BleepingComputer to identify whether a vendor patch is already available for the affected product version and Spring 2026 VSS timeout regression
    Establish whether a permanent vendor-issued fix exists before committing to registry workarounds, avoiding unnecessary configuration debt

Resolution path

Prevention

Tools

References

VSSVolume Shadow Copy Servicebackup failuresnapshot timeoutWindows Server 2022Windows Server 2025Windows 11 24H2Windows 11 25H2VeeamAcronisCommvaultSpring 2026 regressionApril 2026 updateMay 2026 updatedisaster recoverycomplianceEvent ID 12289Event ID 8193VssTimeoutregistryenterprise backupP2