ANAVEM
Languagefr
Windows Event Viewer displaying Volume Shadow Copy Service monitoring on a data center workstation
Event ID 47WarningVolsnapWindows

Windows Event ID 47 – Volsnap: Volume Shadow Copy Service Warning

Event ID 47 from Volsnap indicates Volume Shadow Copy Service encountered issues creating or maintaining shadow copies, typically due to insufficient disk space or storage problems.

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
18 March 20269 min read 0
Event ID 47Volsnap 5 methods 9 min
Event Reference

What This Event Means

The Volume Shadow Copy Service represents a critical Windows component that enables point-in-time snapshots of volumes, allowing applications and backup software to create consistent copies of data even while files remain in use. Event ID 47 specifically indicates that the Volsnap driver encountered conditions preventing successful shadow copy operations.

This warning typically manifests when the shadow copy storage area reaches capacity limits, when underlying disk hardware experiences performance issues, or when file system corruption affects shadow copy metadata. The event can also occur during high I/O load scenarios where the storage subsystem cannot accommodate additional shadow copy requests within acceptable timeframes.

VSS operates through a coordinated process involving writers, providers, and requestors. When any component in this chain encounters problems, Event ID 47 may be logged to indicate the failure point. The event details usually contain specific error codes and volume information that help identify the root cause of the shadow copy operation failure.

In enterprise environments, this event often correlates with backup window issues, where multiple backup jobs compete for storage resources or when shadow copy storage areas are undersized for the workload. Understanding the timing and frequency of Event ID 47 occurrences helps administrators optimize shadow copy configurations and prevent backup failures.

Applies to

Windows 10Windows 11Windows Server 2019/2022/2025
Analysis

Possible Causes

  • Insufficient disk space on the volume hosting shadow copy storage
  • Shadow copy storage area reaching maximum configured size limits
  • Underlying disk hardware experiencing performance degradation or failures
  • File system corruption affecting shadow copy metadata structures
  • High I/O load preventing timely completion of shadow copy operations
  • Conflicting backup applications creating simultaneous shadow copy requests
  • VSS writer timeouts during application quiescing operations
  • Storage driver issues or outdated storage controller firmware
  • Antivirus software interfering with shadow copy file operations
  • Registry corruption affecting VSS configuration settings
Resolution Methods

Troubleshooting Steps

01

Check Shadow Copy Storage Space

Start by examining shadow copy storage allocation and usage across all volumes.

  1. Open Command Prompt as Administrator
  2. Check current shadow copy storage configuration:
    vssadmin list shadowstorage
  3. Review available disk space on all volumes:
    Get-WmiObject -Class Win32_LogicalDisk | Select-Object DeviceID, Size, FreeSpace, @{Name='FreeSpaceGB';Expression={[math]::Round($_.FreeSpace/1GB,2)}}
  4. Check shadow copy usage details:
    vssadmin list shadows
  5. If storage is full, increase shadow copy storage allocation:
    vssadmin resize shadowstorage /for=C: /on=C: /maxsize=20GB
  6. Alternatively, delete old shadow copies to free space:
    vssadmin delete shadows /for=C: /oldest
Pro tip: Monitor shadow copy storage usage regularly using scheduled PowerShell scripts to prevent space exhaustion.
02

Investigate Event Viewer Details

Examine the complete Event ID 47 details to identify specific failure causes and affected volumes.

  1. Open Event ViewerWindows LogsSystem
  2. Filter for Event ID 47 from Volsnap source:
    Get-WinEvent -FilterHashtable @{LogName='System'; Id=47; ProviderName='volsnap'} -MaxEvents 20 | Format-Table TimeCreated, Id, LevelDisplayName, Message -Wrap
  3. Check Application log for related VSS errors:
    Get-WinEvent -FilterHashtable @{LogName='Application'; Id=8193,8194,8195} -MaxEvents 10
  4. Review VSS operational logs for detailed information:
    Get-WinEvent -LogName 'Microsoft-Windows-VolumeSnapshot-Driver/Operational' -MaxEvents 50
  5. Export events for analysis:
    Get-WinEvent -FilterHashtable @{LogName='System'; Id=47} | Export-Csv C:\temp\event47_analysis.csv -NoTypeInformation
  6. Correlate timing with backup schedules and system activities
Warning: Multiple Event ID 47 occurrences within short timeframes often indicate hardware issues requiring immediate attention.
03

Reset Volume Shadow Copy Service

Restart VSS components and clear potentially corrupted shadow copy metadata.

  1. Stop dependent services first:
    Stop-Service -Name 'BITS', 'wuauserv', 'CryptSvc' -Force
  2. Stop the Volume Shadow Copy service:
    Stop-Service -Name 'VSS' -Force
  3. Clear shadow copy storage (this removes all existing shadow copies):
    vssadmin delete shadows /all /quiet
  4. Reset VSS writers:
    vssadmin list writers
  5. Restart the VSS service:
    Start-Service -Name 'VSS'
  6. Restart dependent services:
    Start-Service -Name 'BITS', 'wuauserv', 'CryptSvc'
  7. Verify VSS functionality:
    vssadmin create shadow /for=C:
  8. Check for new Event ID 47 occurrences after testing
Pro tip: Schedule this reset procedure during maintenance windows as it removes all existing restore points.
04

Analyze Storage Performance and Health

Investigate underlying storage subsystem performance that may be causing shadow copy failures.

  1. Check disk health using built-in diagnostics:
    Get-PhysicalDisk | Get-StorageReliabilityCounter | Select-Object DeviceId, Temperature, ReadErrorsTotal, WriteErrorsTotal
  2. Monitor disk performance counters:
    Get-Counter '\PhysicalDisk(*)\Avg. Disk Queue Length', '\PhysicalDisk(*)\% Disk Time' -SampleInterval 5 -MaxSamples 12
  3. Run comprehensive disk check:
    chkdsk C: /f /r /x
  4. Check for storage driver issues in Device Manager:
    Get-WmiObject Win32_PnPEntity | Where-Object {$_.ConfigManagerErrorCode -ne 0} | Select-Object Name, ConfigManagerErrorCode
  5. Review storage-related events:
    Get-WinEvent -FilterHashtable @{LogName='System'; Id=7,11,51,153} -MaxEvents 20
  6. Test storage performance using diskspd or similar tools
  7. Update storage controller drivers and firmware if issues are detected
Warning: Running chkdsk on system volumes requires a restart and can take several hours on large drives.
05

Advanced VSS Configuration and Registry Analysis

Perform deep analysis of VSS configuration and registry settings for advanced troubleshooting.

  1. Backup VSS registry settings before making changes:
    reg export HKLM\SYSTEM\CurrentControlSet\Services\VSS C:\temp\vss_backup.reg
  2. Check VSS service configuration:
    Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\VSS'
  3. Examine shadow copy provider registration:
    vssadmin list providers
  4. Check for corrupted VSS writers:
    vssadmin list writers | Select-String 'Writer name\|State'
  5. Re-register VSS components if corruption is detected:
    cd /d %windir%\system32
    regsvr32 /s ole32.dll
    regsvr32 /s oleaut32.dll
    regsvr32 /s vss_ps.dll
  6. Reset shadow copy storage configuration:
    reg delete 'HKLM\SYSTEM\CurrentControlSet\Services\VSS\Settings' /f
  7. Restart the system and monitor for Event ID 47 recurrence
  8. Configure enhanced VSS logging for ongoing monitoring:
    reg add 'HKLM\SYSTEM\CurrentControlSet\Services\VSS\Debug' /v 'Trace' /t REG_DWORD /d 1
Pro tip: Enable VSS debug logging only temporarily as it generates significant log volume and can impact performance.

Overview

Event ID 47 fires when the Volume Shadow Copy Service (VSS) encounters problems during shadow copy operations. This warning typically appears in the System log when VSS cannot create new shadow copies due to storage constraints, disk space limitations, or underlying storage subsystem issues. The Volsnap driver, responsible for managing shadow copy storage areas, generates this event when it detects conditions that prevent successful shadow copy creation or maintenance.

This event commonly occurs during scheduled backup operations, System Restore point creation, or when applications attempt to create application-consistent snapshots. While not immediately critical, persistent Event ID 47 warnings can indicate underlying storage issues that may impact backup reliability and system recovery capabilities. The event often correlates with backup failures and should be investigated promptly to ensure data protection mechanisms remain functional.

Modern Windows systems rely heavily on VSS for backup operations, System Restore functionality, and application-consistent snapshots. When Event ID 47 appears frequently, it signals potential problems with the shadow copy infrastructure that could compromise these essential system protection features.

Frequently Asked Questions

What does Event ID 47 from Volsnap mean and is it serious?+
Event ID 47 indicates the Volume Shadow Copy Service encountered problems creating or maintaining shadow copies. While classified as a warning rather than an error, it can be serious because it affects backup operations and System Restore functionality. The event typically occurs when shadow copy storage areas are full, disk space is insufficient, or underlying storage hardware has issues. Persistent Event ID 47 warnings should be investigated promptly to ensure backup and recovery capabilities remain functional.
How much disk space should I allocate for shadow copy storage?+
Microsoft recommends allocating 10-15% of the source volume size for shadow copy storage, with a minimum of 300MB. For active servers with frequent changes, consider 20-25% allocation. Use the command 'vssadmin resize shadowstorage /for=C: /on=C: /maxsize=20GB' to adjust allocation. Monitor usage regularly with 'vssadmin list shadowstorage' and increase allocation if storage consistently reaches capacity. Remember that insufficient shadow copy storage directly causes Event ID 47 warnings.
Can Event ID 47 cause backup failures and how do I prevent them?+
Yes, Event ID 47 directly correlates with backup failures because most backup applications rely on VSS for creating consistent snapshots. When shadow copy operations fail, backups cannot create application-consistent copies of data. Prevent backup failures by monitoring shadow copy storage usage, ensuring adequate disk space, scheduling backups during low I/O periods, and configuring appropriate shadow copy storage allocation. Implement automated monitoring scripts to alert when shadow copy storage reaches 80% capacity.
Why do I see Event ID 47 only during specific times or backup windows?+
Event ID 47 often occurs during backup windows because that's when multiple shadow copy requests compete for storage resources. High I/O load during backups can overwhelm storage subsystems, causing shadow copy timeouts. Additionally, if shadow copy storage areas are undersized, they fill up quickly during intensive backup operations. To resolve this, stagger backup schedules, increase shadow copy storage allocation, optimize storage performance, and ensure backup applications don't create conflicting simultaneous shadow copy requests.
How do I troubleshoot Event ID 47 when it appears with other VSS-related errors?+
When Event ID 47 appears with other VSS errors, start by checking the Application log for VSS writer failures (Event IDs 8193-8195) and the VSS operational log for detailed error information. Use 'vssadmin list writers' to identify failed writers and 'vssadmin list providers' to check provider status. Common combinations include Event ID 47 with writer timeout errors, indicating applications aren't responding to quiesce requests within timeout periods. Reset VSS components systematically, starting with restarting the VSS service, then re-registering VSS writers if corruption is detected.
Documentation

References (2)

Emanuel DE ALMEIDA
Written by

Emanuel DE ALMEIDA

Senior IT Journalist & Cloud Architect

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...