Windows Admin

Enable System Restore on Windows

Restore points are cheap insurance — enable them before risky changes.

10 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

Warning

System Restore does not replace full backups — it rolls back system files and registry, not necessarily your personal documents. Malware can hide in restore points; scan after restoring if infection was suspected.

What you will achieve

Turn System Restore on for the system drive, allocate sensible disk space, and create a manual restore point before driver installs, registry edits, or other risky changes.

1) Open System Protection settings

  1. Press Win + R, type sysdm.cpl, press Enter.
  2. Open the System Protection tab.
  3. Or search Start for Create a restore point — same dialog.

2) Enable restore on the system drive

  1. Select the system drive (usually C:) → click Configure.
  2. Select Turn on system protection.
  3. Set Max Usage — 5–10% on large SSDs is typical; minimum 2–3 GB on smaller drives.
  4. Click OK to save.

If Turn on system protection is greyed out, check whether Group Policy disables it or the volume is not NTFS.

3) Create a manual restore point

  1. On the System Protection tab, click Create.
  2. Enter a descriptive name (for example Before NVIDIA driver 555).
  3. Click Create — completion takes under a minute when shadow copy service is healthy.

4) Verify restore points exist

  1. Click System RestoreNext — available points list without committing.
  2. Cancel to exit, or proceed if you need to roll back now.

Command-line check in Admin PowerShell:

Get-ComputerRestorePoint | Format-Table SequenceNumber, Description, CreationTime

5) When System Restore is off by default

Some OEM images and Windows 11 fresh installs disable protection to save space. Re-enable using steps above. After major updates, Windows often creates automatic restore points — but do not rely on them; create manual points before risky work. If restore fails with errors, run sfc /scannow and confirm the Volume Shadow Copy service (vssvc) is running in services.msc.

6) Enable via PowerShell

On systems where the GUI is blocked, Admin PowerShell:

Enable-ComputerRestore -Drive "C:\"
vssadmin resize shadowstorage /for=C: /on=C: /maxsize=10GB

Adjust maxsize for your drive. Then create a point with Checkpoint-Computer -Description "Manual baseline" on supported editions.

Related guides

restore point system restore windows