How to Fix Backup Error Code 0x81000019 on Windows 11

If you keep getting error 0x81000019 when attempting to back up your Windows PC, along with the message “A shadow copy could not be created,” you're probably getting really annoyed! Especially after restarting or ensuring that your external drive is properly connected. This error typically happens when using Windows Backup and Restore, and it’s related to shadow copies, which are snapshots of in-use files during the backup process. You may also get the “Insufficient storage available to create either the shadow copy storage file or other shadow copy data.” error as well. But this guide will help you solve both. 

Common Causes

How to Fix Backup Error Code 0x81000019 on Windows 11

Follow these methods in order. You may need to try them all. Start from the top and proceed to the next solution if the problem doesn't go away when you complete one.

Free Up Space on the System Reserved or EFI Partition

The shadow copy system requires space on the System Reserved or EFI partition, not just your main drive.

Manually Configure Shadow Copy Storage

If shadow storage is misconfigured, it can prevent backups from completing.

vssadmin resize shadowstorage /For=C: /On=C: /MaxSize=10%

Run Disk Cleanup, Including System Files

Removing temporary files and system data can free up enough space for shadow copies.

Check VSS and Related Services

If the Volume Shadow Copy service isn’t running correctly, backups can fail.

Run System File Checker & DISM Commands

Corrupt system files can cause backup failures. Running a system scan can help fix this.

sfc /scannow

 

Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /RestoreHealth

(If you receive errors, try: Dism /Online /Cleanup-Image /RestoreHealth /Source:C:\RepairSource\Windows /LimitAccess)

Run CHKDSK to Check Disk Health

Checking your disk for errors can also resolve issues that prevent backups.

chkdsk c: /f

For SSDs or deeper scans, use chkdsk c: /f /r /x)

Disable Third-Party Backup or Antivirus Software

Sometimes, third-party backup software or antivirus tools can interfere with Windows backup processes.

Tip: Temporarily disable these tools and attempt the backup again.

Use Storage Sense to Clean Hidden Cache

Storage Sense automatically clears temporary files and frees up space for backup processes.

Re-Register VSS Components

If the VSS components are not properly registered, backups may fail.

net stop vss
net stop swprv
cd %windir%\system32
regsvr32 ole32.dll
regsvr32 oleaut32.dll
regsvr32 vss_ps.dll
vssvc /register
regsvr32 /i swprv.dll
regsvr32 /i eventcls.dll
regsvr32 es.dll
regsvr32 stdprov.dll
regsvr32 vssui.dll
regsvr32 msxml.dll
regsvr32 msxml3.dll
regsvr32 msxml4.dll

Comments