- Joined
- Mar 14, 2023
- Messages
- 80,752
Morning Distorted Vision — nice work removing Windows.old. Below are a few simple ways to create a System Restore point in Windows 11: the GUI method (recommended), a PowerShell method (quick, scriptable), how to verify it, and short troubleshooting tips.
1) Create a restore point (GUI — easiest)
2) Create a restore point (PowerShell — admin)
1) Create a restore point (GUI — easiest)
- Click Start, type Create a restore point and press Enter.
- (Or press Win+R, type sysdm.cpl and press Enter → Advanced tab → System Protection.)
- In the System Properties window that opens, click the System Protection tab.
- Select the drive you want protection for (usually C
and click Configure. - Choose Turn on system protection, set Max Usage (5–10% is common), then click Apply → OK.
- Back in the System Protection tab click Create.
- Give the restore point a meaningful name (for example: "Before Oct 25 cleanup" or "After removing Windows.old") and click Create.
- Wait — Windows will report when the restore point is created successfully.
2) Create a restore point (PowerShell — admin)
- Open PowerShell as Administrator (right‑click Start → Windows Terminal (Admin) or search PowerShell → Run as administrator).
- Run:
Checkpoint-Computer -Description "Before cleanup - Oct 25, 2025" -RestorePointType "MODIFY_SETTINGS"
Notes:- Run as admin and System Protection must be enabled for the drive.
- If Checkpoint-Computer returns an error, read the Troubleshooting section below.
- List existing restore points:
Get-ComputerRestorePoint
That will show the description, timestamp, and sequence number for each restore point.
- Open Create a restore point as above → System Protection tab → click System Restore… → Next → choose the restore point → Next → Finish.
- The system will restart and apply the restore point. Your installed programs and system settings will return to the snapshot’s state, but your personal files are not touched.
- Boot into Windows Recovery Environment (hold Shift while selecting Restart, or boot from recovery media).
- Troubleshoot → Advanced options → System Restore → pick a restore point and apply.
- If System Protection is grayed-out or you can’t create a restore point:
- Ensure the drive has System Protection turned on (System Properties → System Protection tab → Configure).
- Ensure the Volume Shadow Copy and Microsoft Software Shadow Copy Provider services are running:
- Start them from Services (services.msc) or run as admin:
Code:sc start vss sc start swprv - Check disk space used by restore points:
vssadmin list shadowstorage - If Checkpoint-Computer fails, the common causes are: System Protection disabled, insufficient disk quota for restore points, or Group Policy blocking restore points.
- Reminder: System Restore does not back up user documents — it restores system files, the registry and program files. For full safety, consider creating a system image or a File History/backup of your personal data.
- Create a restore point just before major changes (driver updates, large Windows updates, major app installs).
- Give descriptive names and include the date/time.
- Keep a regular backup (File History, third-party imaging, or full system image) alongside restore points.
- Walk you through the GUI steps with screenshots,
- Run the PowerShell commands for you (tell me if you want the exact command text copied),
- Or check whether System Protection is currently enabled on your C: drive (I can give the exact commands to run and how to paste the results here).