Guide

How to analyze VSS Event IDs 813 and 12289

This BAOI guide provides a structured method for analyzing vss 813 and 12289.

⌚ About 2 min read
View my favorites
Backup. Intermediate 15-30 min

This BAOI guide provides a structured method for analyzing vss 813 and 12289.

Avant de commencer : adaptez toujours les commandes et manipulations à votre environnement. Sur un système de production, prévoyez une backup ou un retour arrière lorsque l’action peut modifier la configuration.

Étapes à suivre

  1. 1

    Collect

    To identify the exact error, time time and context.

  2. 2

    Limit

    Identify the systems and users involved.

  3. 3

    Test

    Use appropriate tools or commands to confirm cause.

  4. 4

    Correct

    Apply a targeted and reversible correction.

  5. 5

    Validate

    Play the full screenplay and check the logs.

Commands utiles

Csadminlist1909
vssadminlist,

À retenir

  • Keep the initial state.
  • Avoid multiple simultaneous changes.
  • Document the final result.
Technical deep dive

VSS: read Writer, Provider and Shadow Storage together

Technical checkpoints

  • A Writer should be Stable and error-free for an application-consistent backup to use VSS.
  • Events 8193/12289 often point to permissions, providers, COM or snapshot issues; context and error code matter more than the event number alone.
  • vssadmin list shadowstorage checks used/max shadow storage; insufficient space can delete or fail snapshots.

VSS triage

Read Writers, Providers and ShadowStorage before restarting services.

vssadmin list writers
vssadmin list providers
vssadmin list shadowstorage

Topic-specific pitfalls

  • Restarting all VSS services can make writers Stable while hiding the responsible application.
  • Deleting snapshots without checking backup policy can remove useful restore points.

How to validate

  • All required Writers are Stable/No error immediately before backup.
  • A test backup or snapshot completes and correlated VSS events do not recur.

Operational context

VSS Event IDs 813 and 12289 are context, not a complete diagnosis. Correlate writer state, provider activity, COM/security details and the backup job timeline so the event is tied to the exact snapshot operation that failed.

Step-by-step checks

  1. Capture the full event XML/message for IDs 813 and 12289 including provider/writer identifiers, HRESULT values and the timestamp.
  2. Check all VSS writers before retrying the job and identify any writer that is failed, unstable or stuck after the previous snapshot.
  3. Correlate Application/System/VSS/VolSnap events with the backup-product session so unrelated historical events are not treated as the current cause.
  4. Inventory VSS providers and confirm the backup product is using the intended Microsoft or third-party provider without stale provider registrations.

Useful verification commands

Use commands only on systems you administer and capture the read-only output before making a configuration change.

vssadmin list writers
vssadmin list providers
Get-WinEvent -FilterHashtable @{LogName="Application"; Id=813,12289} -MaxEvents 40 | Format-List TimeCreated,Id,ProviderName,Message

How to validate the result

A controlled backup/snapshot must complete with writers returning to Stable/No error and no matching VSS failure at the same operation timestamp.

Evidence to keep

Keep complete event records, writer/provider lists before and after, backup job/session ID, HRESULTs and the successful snapshot timestamp.

Frequently asked question

Does restarting the VSS service prove the issue is fixed?

No. A restart can clear transient state but does not prove the writer/provider or backup integration root cause. The next controlled snapshot must be validated.

Related BAOI resources: IT tools · procedures · IT dictionary.

♡ 0