That code means the backup target volume is not valid for system image storage or there is a conflict with existing shadow copies. You need to ensure the destination drive is not the system or boot volume and has sufficient free space, ideally 1.5 times the size of the source data. If the “WindowsImageBackup” folder already exists on the target, remove or rename it before retrying. Check Event Viewer under Microsoft-Windows-Backup for related VSS errors, and run vssadmin list writers to confirm all writers are stable. If snapshots are corrupted, clear them with vssadmin delete shadows /all and retry, but note this removes all restore points. Running wbadmin start backup from PowerShell can help confirm if the issue is with the backup engine or the GUI. Finally, make sure the server is fully patched with the latest cumulative updates, as some backup issues are resolved by Microsoft hotfixes.
'0x8078006B'. Windows Backup Error
Steven Ernst
0
Reputation points
trying to run server 2019 backup and get: '0x8078006B'. Windows Backup Error
Windows for business | Windows Server | User experience | PowerShell
2 answers
Sort by: Most helpful
-
Harry Phan 15,915 Reputation points Independent Advisor
2026-02-03T03:15:23.0233333+00:00 -
Q&A Assist2026-02-03T01:00:50.8666667+00:00 AI generated content. This question contains an answer created with AI from Q&A Assist. Learn moreThe error code
0x8078006Bduring a Windows Server backup typically indicates that there is an issue with the Volume Shadow Copy Service (VSS) or the backup process itself. Here are some steps you can take to troubleshoot and potentially resolve this issue:- Check Disk Space: Ensure that there is enough free space on the drive where the backup is being stored.
- VSS Writers: Run the command
vssadmin list writersin an elevated command prompt to check the status of VSS writers. If any writers are not stable, you may need to restart the services associated with them. - Event Viewer: Check the Event Viewer for any related error messages that can provide more context about the failure.
- Permissions: Make sure that the account running the backup has the necessary permissions to access the files and directories involved in the backup process.
- Repair VSS: If the VSS service is malfunctioning, you might need to repair it. This can involve unregistering and re-registering the VSS components.
- Antivirus Software: Sometimes, antivirus software can interfere with the backup process. Consider temporarily disabling it to see if that resolves the issue.
If these steps do not resolve the error, further investigation into specific logs and configurations may be necessary.
References: