Windows 7 Delete Old System Restore Points

Posted on by  admin
Windows 7 Delete Old System Restore Points Average ratng: 6,6/10 8284 reviews

QRM Plus Manager is a handy application for Windows 7 and Windows 8 to delete one or more restore points in a jiffy. Once installed, you will QRM Plus entry in the desktop context menu. Once installed, you will QRM Plus entry in the desktop context menu.

I know when I click on 'Show more restore points' in the Windows 7 System Restore application it shows up more restore points. But are they all there? Only a few more showed up, and I believed I must have had more.

I also checked the disk space I allocated for the restore points. There is still much space left.

Peter Mortensen
8,47516 gold badges61 silver badges85 bronze badges
CodeNoobCodeNoob
7764 gold badges14 silver badges29 bronze badges
Is it safe to delete restore points

2 Answers

Run PowerShell as an administrator. At the prompt:

This will list all the system restore points.

PowerShell offers four Cmdlets to manage system restore and/or restore points:

  1. Disable-ComputerRestore

  2. Enable-ComputerRestore

  3. Get-ComputerRestorePoint

  4. Restore-Computer

For assistance with any of them, you can add get-help in front of the Cmdlet, i.e.

Peter Mortensen

Delete Individual Restore Points Windows 7

8,47516 gold badges61 silver badges85 bronze badges
Sean C.Sean C.

System Restore is implemented using the Volume Shadow Copy Service (Volume Snapshot Service, VSS). As such, you can use vssadmin in an elevated command prompt to list all of the restore points:

Note that Windows Backup also uses VSS, with shadow copies stored on both the system and backup drives, so if your backup drive is connected, the shadow copies stored on the backup drive corresponding to these backups will be listed as well. Add /for=C: to specify the volume you want to list the shadow copies for, replacing C: with the volume letter of your choice if it is not C:.

While this isn't the easiest way to work with restore points, you can use the creation date and time and shadow copy ID listed in the output from the above command to delete specific restore points, using the vssadmin Delete Shadows command. You can also create restore points with vssadmin Create Shadow and change the amount of space available to restore points with vssadmin Resize ShadowStorage. More information about vssadmin is available in this TechNet article.

bwDracobwDraco
37.5k37 gold badges142 silver badges179 bronze badges

Not the answer you're looking for? Browse other questions tagged windows-7windowssystem-restore or ask your own question.

By default, Windows 10 will automatically create a restore point when you install a device driver or Windows update, so you can later reverse system changes if Windows 10 becomes unstable.

Restore points could take up a lot of disk space, so if your PC is running well, there’s not much sense in keeping many old restore points. In this tutorial we’ll show you 3 ways to delete one or more system restore points to save disk space in Windows 10.

Method 1: Delete All System Restore Points in System Protection

Use the Windows key + R keyboard shortcut to open the Run command. Type SystemPropertiesProtection and press Enter.

This will open the System Protection page in the System Properties window. Now select a drive you want to delete all old restore points from, and click on Configure.

Click on the Delete button. When the warning dialog pops up, click Continue to confirm.

Method 2: Delete All But the Most Recent Restore Point via Disk Cleanup

Right-click on a local drive and then select Properties from the context menu.

Under the General tab, click on Disk Cleanup.

Next, click on Clean up system files.

Go to the the More Options tab, click on the Clean up button under the “System Restore and Shadow Copies” section.

When the Disk Cleanup confirmation box opens, click on Delete and Windows 10 will delete all your restore points while keeping the most recent one.

Should I Delete Old Windows Restore Points

Method 3: Delete Individual System Restore Point via Command Line

Delete System Image Restore Point

Open the Administrative Command Prompt. Execute the following command to list all system restore points created for all drives on your computer. Keep an eye on the creation date and shadow copy ID for each system restore point.
vssadmin list shadows

To delete a specific restore point, type the following command and press Enter.
vssadmin delete shadows /Shadow={shadow copy ID}

If you want to delete all restore points for all your drives, just run this command instead:
vssadmin delete shadows /all

That’s it!

Related posts:


Comments are closed.