Step-by-Step Guide: Repair the System Restore Calendar and Restore Points

How to Fix System Restore Calendar Errors on Windows

System Restore uses a calendar-like view of restore points. If the System Restore calendar shows errors, is blank, or won’t let you select restore points, follow this step-by-step guide to diagnose and fix the problem. These steps assume Windows ⁄11; where needed, adjust for older versions.

1. Check System Protection and Restore Point Availability

  1. Open System Properties:
    • Press Windows+R, type sysdm.cpl, press Enter.
  2. Select the System Protection tab.
  3. Ensure protection is On for your system drive (usually C:).
  4. Click Configure for the drive and confirm “Restore system settings and previous versions of files” is selected and that disk usage isn’t set to 0%. Increase the max usage to 5–10% if needed.
  5. Click Create to make a test restore point. If creation succeeds, retry System Restore.

2. Run System File Checker and DISM

  1. Open an elevated Command Prompt: press Start, type cmd, right-click Command Prompt → Run as administrator.
  2. Run SFC:

    Code

    sfc /scannow

    Wait for completion and note any repairs.

  3. If issues persist, run DISM:

    Code

    DISM /Online /Cleanup-Image /RestoreHealth
  4. Reboot and check System Restore calendar again.

3. Verify and Restart Relevant Services

  1. Press Windows+R, type services.msc, Enter.
  2. Locate these services and ensure Startup Type is set as shown and service is Running:
    • Volume Shadow Copy — Manual (start it if stopped).
    • Microsoft Software Shadow Copy Provider — Manual.
    • Task Scheduler — Automatic.
    • Windows Backup (if present) — Manual.
  3. If any are stopped, right-click → Start. If they won’t start, note the error code and proceed to Event Viewer.

4. Inspect Event Viewer for Errors

  1. Press Windows+R, type eventvwr.msc, Enter.
  2. Check under Windows Logs → Application and System for errors related to VSS, SR, or Volume Shadow Copy around times you attempted restore or created points.
  3. Use the event details (error codes/messages) to search Microsoft support articles or proceed to manual fixes below.

5. Repair Volume Shadow Copy (VSS) Problems

  1. In elevated Command Prompt, list VSS providers and writers:

    Code

    vssadmin list providers vssadmin list writers
  2. If writers show errors, restart related services (see step 3) and reboot.
  3. To delete stale shadow copies if VSS is failing:

    Code

    vssadmin delete shadows /for=C: /all

    Note: This removes existing shadow copies; only use if necessary and after backing up important files.

6. Check Disk Health and File System

  1. Run CHKDSK in elevated Command Prompt:

    Code

    chkdsk C: /f /r

    You may be prompted to schedule on next reboot. Reboot to run.

  2. After completion, check System Restore again.

7. Temporarily Disable Third-Party Backup/Antivirus Software

  • Some backup or antivirus tools interfere with VSS and restore points. Temporarily disable or uninstall them, reboot, and recheck the calendar. If this fixes the issue, consult the vendor for a compatible configuration.

8. Rebuild the System Restore Database (if corrupted)

  1. Open File Explorer, enable viewing hidden/protected files.
  2. Navigate to C:\System Volume Information (you may need to take ownership or use elevated tools).
  3. If corruption suspected, you can:
    • Temporarily disable System Protection (System Properties → Configure → Turn off system protection), reboot, then re-enable and create a fresh restore point.
    • Or use third-party tools cautiously to repair the database. Back up data before proceeding.

9. Use System Restore from Safe Mode or Recovery Environment

  1. Boot into Safe Mode:
    • Settings → Update & Security → Recovery → Restart now (Advanced startup) → Troubleshoot → Advanced options → Startup Settings → Restart → choose Safe Mode.
  2. Run System Restore from there (Control Panel → Recovery → Open System Restore) or choose a restore point from Windows Recovery Environment (WinRE) → Troubleshoot → Advanced options → System Restore.

10. As a Last Resort: Repair Install or Reset

  • If none of the above works and System Restore remains unusable:
    • Perform an in-place repair install (Windows ⁄11 installation media → Run setup.exe → Upgrade this PC now → Keep personal files and apps).
    • Or back up data and perform a clean install.

Quick checklist (summary)

  • Verify System Protection is enabled for C: and disk usage > 0%.
  • Run sfc /scannow and DISM /RestoreHealth.
  • Ensure VSS and Task Scheduler services are running.
  • Check Event Viewer for VSS/SR errors.
  • Run chkdsk and repair disk issues.
  • Temporarily disable conflicting third-party tools.
  • Recreate restore points after disabling and re-enabling protection.
  • Use Safe Mode or WinRE to run System Restore if normal mode fails.

If you want, tell me which Windows version you’re using and any error messages from Event Viewer and I’ll provide the precise commands and targeted fixes.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *