Quick fix: System Restore enforces a 24-hour minimum between restore points by default. Your “just created” restore point may have been auto-merged with an earlier one or skipped because it’s too close in time. Adjust via registry: set HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore\SystemRestorePointCreationFrequency = 0 (DWORD) to allow unlimited points.
You created a System Restore point manually before installing risky software. The wizard reported success. But when you check Restore Points later, your new one isn’t there — you see only an older point. The recently-created point was merged or rejected by Windows’ default frequency rule.
Affects: Windows 11 with System Protection enabled.
Fix time: 5 minutes.
What the frequency rule does
By default, System Restore won’t create a new restore point within 24 hours of the previous one. The reasoning: prevent automatic processes from creating redundant points. The downside: a manual point created shortly after an automatic one gets silently merged.
Method 1: Remove the frequency limit via registry
- Open regedit.
- Navigate to
HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore. - Create DWORD SystemRestorePointCreationFrequency =
0. - Try creating a restore point. Now it appears regardless of timing.
Method 2: Verify protection is on for the volume
- Right-click This PC → Properties → System Protection.
- For each drive, click the drive and confirm protection is On.
- Set Max Usage to a reasonable size (10 GB minimum).
Method 3: Create a restore point via PowerShell
- Elevated PowerShell:
Checkpoint-Computer -Description “Pre-install $(Get-Date -Format yyyyMMdd_HHmm)” -RestorePointType MODIFY_SETTINGS - This bypasses the GUI’s frequency check in some builds.
Verification
- Open System Restore wizard. The new point is in the list with the timestamp you set.
- Right-click This PC → Properties → System Protection → Configure → the count shows it.
If none of these work
If restore points still don’t appear, the Volume Shadow Copy service may be failing — check Event Viewer → Application log for VSS errors. For drives where System Protection won’t enable, the volume may have insufficient free space (need ~10% free) or be on an unsupported file system (ReFS doesn’t support System Restore).
Bottom line: The 24-hour frequency rule silently skips manual points. Set SystemRestorePointCreationFrequency to 0 for guaranteed creation of every requested point.