View Categories

System Restore or Time Machine Not Working — Recover or Rebuild Snapshots

4 min read

Overview #

System Restore (Windows) and Time Machine (macOS) are lifesavers when updates or installations go wrong — but they sometimes fail to run, freeze during restoration, or refuse to create restore points.
This guide walks you through fixing these built-in recovery systems, repairing snapshot services, and safely restoring your system to a previous working state.

What you’ll learn

  • How to fix restore or backup system errors
  • How to re-enable snapshot services and drivers
  • How to rebuild restore points or Time Machine backups
  • How to perform safe rollbacks without data loss

Estimated time: 20–40 minutes
Skill level: Intermediate


Terms and Definitions #

TermMeaning
System Restore PointSnapshot of Windows system files and registry for rollback
VSS (Volume Shadow Copy Service)Windows service that creates system snapshots
Time MachinemacOS backup system for files, apps, and system state
Backup DiskExternal or internal drive that stores Time Machine or restore snapshots
Restore RollbackReverting the operating system to a previously stored point in time

Steps #

Step 1 — Check for Recent Errors or Failed Restores #

Windows PowerShell

Get-WinEvent -LogName Application | Where-Object {$_.Message -like "*System Restore*"} | Select TimeCreated, Message -Last 10

If you see messages like “The shadow copy failed” or “Restore point creation failed”, it indicates the VSS service is malfunctioning.

macOS Terminal

log show --predicate 'eventMessage CONTAINS "backupd"' --last 24h

This checks for Time Machine errors such as “Backup volume not available” or “Snapshot failed.”


Step 2 — Verify Restore or Backup Drive Availability #

Windows

Get-Volume

Ensure your system drive (C:) shows HealthStatus = Healthy.
If using a secondary drive for restore points, it must have NTFS formatting.

macOS

diskutil list

Verify your Time Machine drive appears under /Volumes/.
If not, reconnect or power-cycle the external drive.


Step 3 — Check Restore / Snapshot Services #

Windows

Get-Service VSS, swprv, Sdrsvc, srservice

If any show Stopped, restart them:

Start-Service VSS
Start-Service swprv
Start-Service Sdrsvc
Start-Service srservice

These are responsible for system restore point creation.

macOS
Check the Time Machine service:

sudo launchctl list | grep backupd

If inactive, restart it:

sudo launchctl kickstart -k system/com.apple.backupd-auto

Step 4 — Recreate the Restore or Backup Configuration #

Windows

  1. Open Control Panel → System → System Protection.
  2. Select your system drive → Configure.
  3. Turn on System Protection and allocate at least 5–10 GB.
  4. Click Create to manually create a test restore point.

macOS

  1. Open System Settings → General → Time Machine.
  2. Re-add your backup disk if missing. sudo tmutil setdestination /Volumes/YourBackupDrive
  3. Verify automatic backups are enabled: sudo tmutil enable

Step 5 — Clear Old or Corrupt Snapshots #

Windows PowerShell

vssadmin list shadows
vssadmin delete shadows /all /quiet

Then recreate a restore point:

Checkpoint-Computer -Description "Clean Restore Point"

macOS
Delete damaged Time Machine snapshots:

sudo tmutil listlocalsnapshots /
sudo tmutil deletelocalsnapshots 2025-10-09-120011

(Replace the timestamp with the snapshot name from the list.)

Rebuild a fresh snapshot:

sudo tmutil localsnapshot

Step 6 — Repair File System Integrity #

Windows
Run:

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

These repair corruption that prevents snapshots from completing.

macOS

diskutil verifyVolume /
diskutil repairVolume /

Reboot after completion.


Step 7 — Test Restore Functionality #

Windows
List available restore points:

vssadmin list shadows

Or use the System Restore interface:

rstrui.exe

Choose the most recent working restore point and run through the wizard.

macOS
Initiate a Time Machine restore:

  1. Click the Time Machine icon in the menu bar.
  2. Select Enter Time Machine → navigate to a date prior to the issue.
  3. Restore files or the full system if necessary.

Step 8 — Check for Security or Policy Restrictions #

Windows
Some antivirus tools or corporate Group Policies disable restore features.
Run:

gpedit.msc

Navigate to Computer Configuration → Administrative Templates → System → System Restore.
Ensure “Turn off System Restore” and “Turn off Configuration” are both set to Not Configured.

macOS
Ensure the Time Machine drive is not encrypted or restricted by MDM policies.

sudo fdesetup status

If FileVault is on, unlock the drive before backing up.


Step 9 — Monitor for New Snapshots #

Windows
Create a daily scheduled restore point:

Checkpoint-Computer -Description "Daily Auto Restore Point"

macOS
Force a new local snapshot:

sudo tmutil localsnapshot

Confirm success:

tmutil listlocalsnapshots /

Verification #

CheckCommandExpected Result
ServicesGet-Service VSS / launchctl listAll Running
Restore pointCheckpoint-ComputerCompleted successfully
Snapshot listvssadmin list shadows / tmutil listlocalsnapshotsEntries appear
DriveGet-Volume / diskutil listHealthy and mounted

Conclusion #

If System Restore or Time Machine fails, the problem is rarely catastrophic. It’s almost always due to disabled snapshot services, full drives, or corrupted restore data.
By restarting the right services, clearing old snapshots, and rebuilding new ones, you can restore system recovery capability and protect your machine from future failures.
Keep automatic restore or backup scheduling turned on — it’s your fastest way back to normal when things go wrong.

Powered by BetterDocs

Leave a Reply

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