See List of All Available System Restore Points in Windows  

Page 1 of 2 12 LastLast
    See List of All Available System Restore Points in Windows

    See List of All Available System Restore Points in Windows

    How to See List of All Available System Restore Points in Windows
    Published by Category: Backup & Restore
    05 Mar 2021
    Designer Media Ltd

    How to See List of All Available System Restore Points in Windows


    System protection (if turned on) is a feature that allows you to perform a system restore that takes your PC back to an earlier point in time, called a system restore point. This can be handy if your PC isn't working well and you recently installed an app, driver, or update.

    Each restore point contains the necessary information needed to restore the system to the chosen state. Restore points are automatically generated when you install a new app, driver, or Windows update, and generated when you create a restore point manually. Restoring won’t affect your personal files in your %UserProfile% folder, but it will remove apps, drivers, and updates installed after the restore point was created.

    See also:

    This tutorial will show you how to see a list of all available system restore points in Windows 7, Windows 8, and Windows 10.

    You will need to be signed in as an administrator to see available restore points.



    Contents

    • Option One: See List of All Available System Restore Points in System Restore
    • Option Two: See List of All Available System Restore Points in Command Prompt
    • Option Three: See List of All Available System Restore Points in PowerShell






    OPTION ONE

    See List of All Available System Restore Points in System Protection


    1 Press the Win + R keys to open Run, type rstrui into Run, and click/tap on OK to open System Restore.

    2 If you have never done a System Restore yet, click/tap on Next. (see screenshot below)

    See List of All Available System Restore Points in Windows-list_restore_points_from_system_protection-1.png

    3 If you had previously done a System Restore, select (dot) Choose a different restore point, and click/tap on Next. (see screenshot below)

    See List of All Available System Restore Points in Windows-list_restore_points_from_system_protection-2.png

    4 All current restore points will now be listed with a Date and Time created, Description, and Type of restore point for each. (see screenshot below)

    You can check the Show more restore points box (if available) at the bottom left corner to see any older restore points (if available) not currently listed.

    You can click/tap on the Scan for affected programs button to see which installed programs will be affected by the currently selected restore point.

    See List of All Available System Restore Points in Windows-list_restore_points_from_system_protection-3.png

    5 When finished reviewing your restore points, you can click/tap on the Cancel button or close the System Restore window. (see screenshot above)






    OPTION TWO

    See List of All Available System Restore Points in Command Prompt


    To see more vssadmin list shadows command usage details, see: Vssadmin list shadows | Microsoft Docs


    1 Open an elevated command prompt.

    2 Type the command below you want to use into the elevated command prompt, and press Enter. (see screenshots below)

    This will list all shadow copies (restore points) on all or specific drives. You will see the volume drive letter and shadow copy ID number for each one.


    (List all available restore points for all drives)
    vssadmin list shadows

    (Output list of all available restore points for all drives to text file on desktop)
    vssadmin list shadows >"%userprofile%\Desktop\Restore Points.txt"

    OR

    (List all available restore points for specific drive)
    vssadmin list shadows /For=<drive letter>:

    (Output list of all available restore points for specific drive to text file on desktop)
    vssadmin list shadows /For=<drive letter>: >"%userprofile%\Desktop\Restore Points.txt"

    Substitute <drive letter> in the command above with the actual drive letter (ex: "C") of the drive that has saved restore points on you want to see a list of.

    For example: vssadmin list shadows /For=C:

    See List of All Available System Restore Points in Windows-list_restore_points_in_command_prompt-1.jpg See List of All Available System Restore Points in Windows-list_restore_points_in_command_prompt-2.jpg






    OPTION THREE

    See List of All Available System Restore Points in PowerShell


    To see more Get-ComputerRestorePoint command usage details, see: Get-ComputerRestorePoint | Microsoft Docs


    1 Open an elevated PowerShell.

    2 Copy and paste the command below you want to use into the elevated PowerShell, and press Enter. (see screenshots below)

    (List all available restore points for all drives)
    Get-ComputerRestorePoint | Format-Table -AutoSize

    (Output list of all available restore points for all drives to text file on desktop)
    Get-ComputerRestorePoint | Format-Table -AutoSize | Out-File -filepath "$Env:userprofile\Desktop\Restore Points.txt"

    OR

    (List all available restore points for all drives with more details)
    Get-ComputerRestorePoint | Format-List

    (Output list of all available restore points for all drives with more details to text file on desktop)
    Get-ComputerRestorePoint | Format-List | Out-File -filepath "$Env:userprofile\Desktop\Restore Points.txt"

    See List of All Available System Restore Points in Windows-list_restore_points_in_powershell-2.jpg See List of All Available System Restore Points in Windows-list_restore_points_in_powershell-1.png


    That's it,
    Shawn






  1. Posts : 316
    Pro 20H2
       #1

    See List of All Available System Restore Points in Windows-restorepoints.jpg

    Brink, what are your thoughts about why that zombie (313) ?
      My Computer


  2. Posts : 68,837
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #2

    Hello @thename,

    If wanted, you could turn off system protection to delete all restore points. Afterwards, turn on system protection to start fresh.

    Delete System Restore Points in Windows 10
      My Computers


  3. Posts : 316
    Pro 20H2
       #3

    Thanks, Brink. Just now I found email notification of your reply.
    Turns out that yesterday I did what you suggested. For D: .
    Nearly always the shadow copies of both C: and D: are gone; infrequently a D: shadow copy is orphaned, which is what my graphic shows. Note that the restore point itself always is gone, even when a D: shadow copy persists.

    Useful for everyone to know that I found that the culprit of my disappearing restore points is my cloud backup service IDrive.

    I wrote a script, which I scheduled to run every five minutes, that tests for presence of a restore point, and creates one when none exists. An inadequate solution, because, given the frequent disappearances
    - I never have more than one restore point
    - restore point always contains very recent state.
    (Useless to create more than one, because of course none survives the disappearances.)
      My Computer


  4. Posts : 68,837
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #4

    I'm glad you found the culprit @thename. Thank you for sharing.
      My Computers


  5. Posts : 64
    Windows 10
       #5

    Method 2 for Command Prompt (with vssadmin) does NOT show the SRP description.

    Any chance to display this field as well (with method 2)?
      My Computer


  6. Posts : 7,606
    Windows 10 Home 20H2
       #6

    You may run the following line of commands via Command Prompt or a CMD/batch script.

    PowerShell Get-ComputerRestorePoint^|Format-Table -AutoSize
      My Computer


  7. Posts : 316
    Pro 20H2
       #7

    I need the table items to be in descending order. I have to think that PS is capable of such basic handling. Anyone help?
      My Computer


  8. Posts : 7,606
    Windows 10 Home 20H2
       #8

    thename said:
    I need the table items to be in descending order. I have to think that PS is capable of such basic handling. Anyone help?
    PowerShell Get-ComputerRestorePoint^|Sort Number -Descending^|FT -A
      My Computer


  9. Posts : 316
    Pro 20H2
       #9

    Thank you, Matthew.

    Requesting comment by you or anyone about the difference shown in the following annotated screen shot :
    See List of All Available System Restore Points in Windows-valsformattinginconsistent.jpg
    Last edited by thename; 22 Dec 2022 at 11:34.
      My Computer


 

Tutorial Categories

See List of All Available System Restore Points in Windows Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 08:33.
Find Us




Windows 10 Forums