Posts Tagged ‘view restore points windows 10’

How to View All Available System Restore Points in Windows 10

June 16th, 2020 by Admin

How can I view a list of system restore points available in Windows 10? To prevent your PC from crashing or freezing, make sure you have created at least one system restore point recently. In this tutorial we’ll show you easy ways to view all available system restore points in Windows 10.

Method 1: View Available System Restore Points via System Properties

  1. Press Windows + R keys together on the keyboard. When the Run dialog box opens, type rstrui and hit Enter.

  2. In the System Restore window, click on Next.

  3. This will list all available system restore points. Based on the description and the creating date, you can identify the restore point you’ve created.

  4. When finished reviewing your restore points, click on Cancel to close System Restore.

Method 2: View Available System Restore Points via PowerShell

  1. Right-click the Start button or use the Windows key + X keyboard shortcut to open the Power User menu, and then select Windows PowerShell (Admin).

  2. Run the following command and all available restore points will be listed with Creation Time, Description , SequenceNumber and other information.
    Get-ComputerRestorePoint

That’s it!

How to Delete One or More System Restore Points in Windows 10

September 26th, 2018 by Admin

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.

Method 3: Delete Individual System Restore Point via Command Line

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!