Buscar en

Error de VSS: No se pudo tomar la instantánea. El proveedor de shadow copy tuvo un error inesperado al intentar procesar la operación especificada

Common VSS Related Errors:

0x800423f4: The writer experienced a non-transient error.

0x8004230f: The shadow copy provider had an unexpected error while trying to process the specified operation.

0x80042336: The writer experienced a partial failure. Check the component level error state for more information.

  1. Check the VSS writers' status in an elevated command prompt. If any writer is in a failed state, you may need to restart the service or, reboot the system.
    From an elevated command prompt or PowerShell run:
vssadmin lista de escritores

Esto proporcionará una lista de todos los escritores VSS en su PC. Usted querrá comprobar el Último error y Estado artículos.

  1. El valor de Último error debe ser siempre Ningún errorSi el estado es diferente, tienes un problema de escritura.
  2. El valor de Estado debe mostrarse [1] Estable.
  3. Un simple reinicio del PC puede resolver este problema. Si el problema continúa después de un reinicio, podría indicar un problema mayor dentro del PC.
  1. Check for disk space issues: Ensure that there's enough free disk space on the volumes being backed up and the volume where the shadow copies are stored.
  2. Check that you have  the VSS writers installed and working.
    If any provider is causing an issue, try reinstalling or updating the provider.
    From an elevated command prompt or PowerShell run:
vssadmin lista de proveedores


Si tiene algún proveedor de VSS en la lista que no sea Microsoft, debe desactivarlo.

  1. El almacenamiento en la sombra en las unidades de origen no está configurado o no es lo suficientemente grande. El tamaño del almacenamiento en la sombra se puede comprobar y cambiar manualmente a través de un símbolo del sistema elevado o PowerShell:

To check the current shadow storage limits:

vssadmin list shadowstorage


To change the shadow storage limit:

vssadmin Resize ShadowStorage /For=X: /On=X: /Tamaño máximo=XX%

Ejemplos de uso:
vssadmin Resize ShadowStorage /For=C: /On=C: /MaxSize=900MB
vssadmin Resize ShadowStorage /For=C: /On=D: /MaxSize=UNBOUNDED
vssadmin Resize ShadowStorage /For=C: /On=C: /MaxSize=20%

  1. Check the Windows Event Logs for error messages or warnings that might be helpful. You can use the Windows Event Viewer or we have provided a PowerShell command below.
    This command will filter events with the source "VSS" or "VolSnap" and displays those with a level of 'Error' or 'Warning':
Get-WinEvent -FilterHashtable @{LogName='System'; ProviderName=@('VSS', 'VolSnap'); Level=@(2,3)} | Format-Table TimeCreated, ProviderName, Id, LevelDisplayName, Message -AutoSize
  • El VSS de Microsoft sólo puede realizar una instantánea a la vez. Si ya se está realizando una instantánea cuando se inicia el trabajo de copia de seguridad, éste podría fallar. Detener y reiniciar el servicio Volume Shadow Copy puede resolver este problema. Para ello, abra un símbolo del sistema elevado o una ventana de PowerShell y ejecute los siguientes comandos:
net stop vss
net start vss


Si el reinicio del servicio VSS con el 'net stop vss & net start vss' mostrado arriba no resuelve el problema, también se sabe que un reinicio del servidor limpia el gestor de instantáneas correctamente.

es_COES