Windows Recovery Points

Contents
Introduction
Cheat sheet
Create recovery point
Create recovery point in PowerShell
Get-ComputerRestorePoint
Restore
Frequency
Related Articles

Introduction

The user can create a new restore point manually, roll back to an existing point, or change the system recovery configuration.

Moreover, the recovery itself can be reversible. Old restore points are reset in order to, to maintain the usage of the disk volume at a precisely defined size.

For many users, this can provide recovery points covering the past few weeks. Users who care about performance or the amount of disk used can also choose to turn off completely system recovery. For files stored on disks, but which the recovery service has not tracked, backups will not be created and such files will never be restored.

System Restore creates backups of system files of certain extensions (.exe, .dll, etc.) and saves them for further recovery and use. The registry and most drivers are also backed up.

Cheat Sheet

Set-ExecutionPolicy -ExecutionPolicy Unrestricted Enable-ComputerRestore -Drive "C:\" Checkpoint-Computer -Description "First" Get-ComputerRestorePoint Restore-Computer -RestorePoint 1

Create Windows recovery point

Search for Create a restore point

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

If Protection is off select virtual drive and click Configure…

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

Select Turn on system protection

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

OK

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

Create…

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

Enter recovery point name and click Create

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

Wait

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com

Close

Create Windows recovery point image from www.aredel.com image from www.aredel.com website
Windows
https://aredel.com
Banner Image

Checkpoint-Computer: Create recovery point with PowerShell

As a PowerShell admin exec

Enable-ComputerRestore -Drive "C:\"
Checkpoint-Computer -Description "www.aredel.com"

Checkpoint-Computer image from www.aredel.com
Checkpoint-Computer
PowerShell
Banner Image

Get-ComputerRestorePoint

In PowerShell as an Administrator exec

Get-ComputerRestorePoint

CreationTime Description SequenceNumber EventType RestorePointType ------------ ----------- -------------- --------- ---------------- 12/4/2026 00:01:15 AM First 1 BEGIN_SYSTEM_C... APPLICATION_INSTALL 12/4/2026 00:05:17 AM Second 2 BEGIN_SYSTEM_C... APPLICATION_INSTALL 12/4/2026 19:13:00 PM www.devhops.ru 3 BEGIN_SYSTEM_C... APPLICATION_INSTALL

Recovery

With PowerShell

Restore-Computer -RestorePoint 6

In GUI:

Search for Recovery

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Open System Restore

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

If recommended option doesn't fit select Choose a different restore point

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Next >

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Chose correct point and click Next >

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Finish

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Yes

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Wait

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Close

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

Recover from point

Recover Windows from recovery point image from www.aredel.com image from www.aredel.com website
Recovery
https://aredel.com

SystemRestorePointCreationFrequency

If you try to create a restore point before the expiration of 24 hours after creating the previous one, an error will appear

WARNING: A new system restore point cannot be created because one has already been created within the past 1440 minutes. The frequency of restore point creation can be changed by creating the DWORD value 'SystemRestorePointCreationFrequency' under the registry key 'HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore'. The value of this registry key indicates the necessary time interval (in minutes) between two restore point creation. The default value is 1440 minutes (24 hours).

You can change the available interval for creating points in the HKEY_LOCAL_MACHINE section of the Windows registry

Откройте редактор реестра regedit

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

Перейдите в HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\SystemRestore

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

Правый клик на SystemRestore

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

New > Key

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

DWORD (32-bit) Value

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

Введите название переменной SystemRestorePointCreationFrequency и значение

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

Проверьте результат

Setting SystemRestorePointCreationFrequency Windows image from www.aredel.com image from www.aredel.com website
SystemRestorePointCreationFrequency
https://aredel.com

It is possible to set SystemRestorePointCreationFrequency with PowerShell

I created two variables so that the lines fit on one screen, you can do everything in one line without additional variables.

$cf_path = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore' $name = 'SystemRestorePointCreationFrequency' New-ItemProperty -Path $cf_path -Name $name -Value 7 -PropertyType DWord

SystemRestorePointCreationFrequency : 7 PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion PSChildName : SystemRestore PSDrive : HKLM PSProvider : Microsoft.PowerShell.Core\Registry

If you check the registry now, you can see that the value is seven.

SystemRestorePointCreationFrequency image from www.aredel.com
SystemRestorePointCreationFrequency
Реестр Windows
Related Articles
Windows
Loudness Equalization
PowerShell
tail analog in PowerShell
Firewall
Drivers
Developer Mode in Windows 10
BASH in Windows 10
Telnet in Windows 10
PATH system varialbe
Windows Installation on gpt disk

Search on this site

Subscribe to @aofeed channel for updates

Visit Channel

@aofeed

Feedback and Questions in Telegram

@aofeedchat