Skip to content
Laptop keyboard ready for system maintenance

Create a System Restore Point on Windows 11 (Before You Tinker)

Turn on System Protection and make a manual restore point on Windows 11 so driver installs and registry tweaks are reversible.

9 min readSystem Restore, Windows 11, restore point

Before you install a sketchy driver, registry “tweak,” or mystery PC cleaner, make a System Restore point. It takes under a minute when System Protection is already on — and it is the cheapest insurance Windows gives you for free.

This guide is for Windows 11 (steps are nearly identical on Windows 10): turn protection on, create a manual point, restore when something breaks, and understand what restore points do not cover.

Restore points are not a substitute for file backup. They will not reliably bring back a deleted novel or your photos folder. Pair them with OneDrive, an external drive, or a proper disk image.

Restore point vs backup vs reset

Method Rolls back drivers/system Restores your documents Best for
System Restore point Yes Usually no Bad driver, failed tweak, post-update glitch
File history / cloud sync No Yes Everyday documents and photos
Full disk image Yes (whole PC) Yes Pre-upgrade safety net
Reset this PC Fresh Windows Optional keep files Deep corruption after other fixes fail

For ransomware resilience, also enable Controlled folder access and keep versioned backups you can restore from offline.

Turn on System Protection (required first)

Many PCs ship with restore off to save a few gigabytes. Create will fail until you enable it.

  1. Press Start, type Create a restore point, open it
  2. In System Properties → System Protection, select the C: drive (system)
  3. Click Configure
  4. Select Turn on system protection
  5. Set Max Usage5–10% is reasonable on a 512 GB+ SSD; on tiny drives keep at least a few GB
  6. Click Apply → OK

If Configure is greyed out, you may lack admin rights, or the PC is managed by work/school policy.

Create a manual restore point

  1. In the same System Protection tab, click Create…
  2. Name it clearly, for example:
    • Before NVIDIA driver Aug 2026
    • Before registry tweak
    • Pre-25H2 experiments
  3. Click Create and wait for The restore point was created successfully

Create one before:

  • GPU, chipset, or BIOS-adjacent driver updates
  • Installing uninstallable “optimizer,” RGB, or VPN suites
  • Big Windows feature updates when you can still prepare
  • Editing the registry or Group Policy at home
  • Following any guide that says “just delete this service”

Related: if you are about to chase a blue screen, read fix Windows 11 BSOD and snapshot first while the PC still boots.

PowerShell option (admins)

Open Windows Terminal (Admin) or PowerShell (Admin):

Checkpoint-Computer -Description "Before driver update" -RestorePointType MODIFY_SETTINGS

If you see an error about frequency, Windows may be rate-limiting identical automatic points — wait a few minutes or create from the GUI with a new description.

How to undo changes with System Restore

From a working desktop

  1. Search RecoveryOpen System Restore, or run rstrui.exe
  2. Click Next, pick a point before the problem started
  3. Scan for affected programs if offered — note apps that will be removed/restored
  4. Confirm and let the PC reboot

Keep the laptop on power. Do not force shutdown mid-restore.

From Windows Recovery (PC will not boot well)

  1. Hold Shift while clicking Restart, or force WinRE with three interrupted boots
  2. Troubleshoot → Advanced options → System Restore
  3. Select the account/admin password if prompted
  4. Choose a restore point and finish

If you only get a black screen, follow Windows 11 black screen fix to reach Safe Mode or WinRE first, then restore.

When System Restore fails

Message / behaviour What to try
“No restore points” Protection was off, or Max Usage was tiny and points aged out
Restore did not complete Boot Safe Mode, disable antivirus briefly, retry oldest known-good point
Stuck at restoring Wait on AC power; if hours pass, WinRE Startup Repair, then Windows Update stuck style component repair
Problem remains after restore Wrong point date, or hardware fault (RAM/disk) — see BSOD/disk guides

Safe Mode path (quick):

  1. Settings → System → Recovery → Advanced startup → Restart now
  2. Troubleshoot → Advanced options → Startup Settings → Restart
  3. Press 4 for Safe Mode
  4. Run rstrui.exe again

Avoid third-party “restore point managers” from adware bundles. They often install browser hijackers. Stick to Windows’ own System Protection unless you use a known backup suite from the vendor’s official site.

What restore will not fix

  • Deleted personal files (unless they happened to be elsewhere)
  • Bad sectors on a dying SSD/HDD — check health; see also 100% disk usage
  • Firmware/BIOS mistakes
  • A full malware infection that poisoned old points — run malware removal from Safe Mode first

After a successful restore, create a fresh point so you have a new baseline, and install only the drivers/apps you still need from official sources.

Good habits (US/UK home PCs)

  1. Enable System Protection the day you set up the PC
  2. Name points like commit messages — future you will thank you
  3. Keep 15–20% free space so Windows can write shadow copies and updates
  4. Prefer vendor drivers over “driver booster” junk
  5. Keep a separate file backup; restore points are for the OS, not your life’s documents

Spend one minute on a restore point now; it beats three hours of reinstalling Windows later.

Restore versus Reset versus image backup

Use System Restore for bad drivers and failed tweaks. Use file/cloud backup for documents. Use disk imaging before major version upgrades if you need a full rollback. Practise opening rstrui.exe once so WinRE is not your first time. After a successful restore, create a fresh point and reinstall only needed apps from official sources.

Frequently Asked Questions

Does a restore point save my documents?

No. It rolls back system files, drivers, and some settings. Personal files are mostly untouched — for better and worse. Back up Documents separately.

Why is System Restore missing or greyed out?

System Protection may be off, the drive is full, or a policy/device image disabled it. Turn protection on for the system drive (usually C:).

How much disk space do restore points need?

A few GB is typical. Under Configure, set Max Usage so Windows can keep more than one point.

Will restore remove malware completely?

Not reliably. Some malware infects restore points. Prefer Safe Mode scans from our malware guide, then restore if needed.

Can I create a restore point from PowerShell?

Yes. With System Protection on, Checkpoint-Computer -Description 'Before driver update' -RestorePointType MODIFY_SETTINGS works in an elevated PowerShell window.