How to Fix System Restore Error 0x80042308 on Windows 11

The System Restore tool on Windows is one of the most useful features everyone will use at some stage. It's a really powerful feature that allows you to revert Windows back to a previously working state prior to any problems occurring. Unfortunately! This super important backup tool can fail after loading for a very long time, showing Error 0x80042308. This isn't a great sign sadly but there are some things you can do to fix the problem so that your computer can finish restoring itself back to a previously working state. 

How to Fix System Restore Error 0x80042308 on Windows 11

Restarting (VSS) Volume Shadow Copy Service might solve this issue. Though I personally haven't had much success with it.

Run SFC and DISM Scans

This has worked for me quite a few times to solve System Restore errors and quite a few others so don't skip this one!

sfc /scannow

 

DISM /Online /Cleanup-Image /CheckHealth

DISM /Online /Cleanup-Image /ScanHealth

DISM /Online /Cleanup-Image /RestoreHealth

 

Check Permissions for the System Volume Information Folder

This is another really important fix. If you don't have the right permissions or if they have changed you might get system restore error messages.

cacls “C:\System Volume Information” /E /G Administrator:F

Disable Third-Party Antivirus or Backup Software

Some security or backup applications interfere with VSS. So disable them or try to restore you system in Safe Mode.

Run a Disk Check

File system errors can disrupt System Restore. Running a chkdsk scan can help.

chkdsk c: /f

Delete Old Shadow Copies

Removing outdated shadow copies can free up space and resolve conflicts.

vssadmin delete shadows /all

Recreate System Restore Points (Not Very Helpful)

If existing restore points are corrupted, deleting and recreating them may resolve the error.

Comments