0% found this document useful (0 votes)
22 views6 pages

Create A Restore Point in Windows 10 With PowerShell

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views6 pages

Create A Restore Point in Windows 10 With PowerShell

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

Using Telegram? Subscribe to the 


blog channel!
Winaero
At the edge of tweaking

Advertisement

Create A Restore Point in Windows 10 with


PowerShell

RЕCOMMENDED: Click here to fix Windоws issues and optimize system performance

If you use the System Restore function in Windows 10 to revert your operating system to the last known stable
point when it was working correctly, you might be interested in creating a new restore point with PowerShell.
This can be useful with various automation scenarios. Also, you can create a special shortcut to execute the
PowerShell command and make a new restore point with one click.

ADVERTISЕMENT

https://winaero.com/restore-point-windows-10-powershell/ 1/6
12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

Get 50% off Using Telegram? Subscribe to the 


your first blog channel!

3 months
Redeem in app

T&Cs apply

This can be especially useful in Windows 10 because System Restore has been scaled back to create restore
points far less frequently, even as low as once a week. Before you begin, make sure you have System Restore
enabled.
To create a restore point in Windows 10 with PowerShell, you need to do the following:

1. Open PowerShell as Administrator.


2. Type or copy-paste the following command:

Checkpoint-Computer -Description "RestorePoint1" -RestorePointType "MODIFY_SETTINGS"

https://winaero.com/restore-point-windows-10-powershell/ 2/6
12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

Once you press the Enter key, a special cmdlet


Using Checkpoint-Computer will create a new restore point. Let's see
Telegram? Subscribe to the 
what the command line arguments that are used inblog
it do:
channel!

Description - specifies a name for your restore point.


RestorePointType - Specifies the type of restore point.

The acceptable values for the RestorePointType parameter are:


APPLICATION_INSTALL
APPLICATION_UNINSTALL
DEVICE_DRIVER_INSTALL
MODIFY_SETTINGS
CANCELLED_OPERATION
The default value is APPLICATION_INSTALL.

Please keep in mind, that in Windows 10, Checkpoint-Computer cannot create more than one restore point
every day. If you try to create a new restore point before the 24-hour period has elapsed, Windows PowerShell
generates the following error:

"A new system restore point cannot be created because one has already been created within the past 24 hours. Please
try again later."

If you need to create a shortcut for this operation, you can do the following.

Right click on the Desktop and select the command "New -> Shortcut" from the context menu.

https://winaero.com/restore-point-windows-10-powershell/ 3/6
12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

Using Telegram? Subscribe to the 


blog channel!

In the shortcut target, type or copy-paste the following text:

powershell -Command "Start-Process powershell.exe -ArgumentList '-ExecutionPolicy Bypass -NoExit -Command \

Specify the desired name for your shortcut and set the icon of your choice and you are done.

Additionally, see these articles:

Start a Process Elevated from PowerShell


How to create a Restore point in Windows 10
Create a restore point in Windows 10 with one click

That's it.

RЕCOMMENDED: Click here to fix Windоws issues and optimize system performance

https://winaero.com/restore-point-windows-10-powershell/ 4/6
12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

Support us Using Telegram? Subscribe to the 


blog channel!
Winaero greatly relies on your support. You can help the site keep bringing you interesting and useful content
and software by using these options:

If you like this article, please share it using the buttons below. It won't take a lot from you, but it will help us
grow. Thanks for your support!

ADVERTISЕMENT

Author: Sergey Tkachenko


Sergey Tkachenko is a software developer who started Winaero back in 2011. On this blog, Sergey is writing about everything connected to
Microsoft, Windows and popular software. Follow him on Telegram, Twitter, and YouTube. View all posts by Sergey Tkachenko

Sergey Tkachenko / Last updated on: February 18, 2017 / Windows 10 / create restore point, Powershell, windows 10 restore point
shortcut

5 thoughts on “Create A Restore Point in Windows 10 with PowerShell”

bst
February 19, 2017 at 1:21 am

thanks very useful

Thorsten Albrecht
February 19, 2017 at 8:06 pm

https://winaero.com/restore-point-windows-10-powershell/ 5/6
12/16/24, 9:39 PM Create A Restore Point in Windows 10 with PowerShell

It’s possible to alter the time interval of 24 h: Telegram? Subscribe to the


Using 
blog channel!
create DWORD SystemRestorePointCreationFrequency in
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore

and specify the minimum time interval in minutes.

Sergey Tkachenko 
February 19, 2017 at 8:49 pm

Thanks for sharing!

Thorsten Albrecht
February 26, 2017 at 11:33 pm

The shortcut link does not work for me, perhaps because of the backtick quotes. Here is a working link (without
backtick quotes):

PowerShell -NoProfile -ExecutionPolicy Bypass -Command “& {Start-Process PowerShell -ArgumentList ‘-


NoProfile -ExecutionPolicy Bypass -NoExit -Command “Checkpoint-Computer -Description “RestorePoint1”
-RestorePointType “MODIFY_SETTINGS”; ” ‘ ” -Verb RunAs}”

Cliff Cameron
January 1, 2022 at 2:08 pm

Only 260 characters of the supplied target text you had input will display when you subsequently right-click the
shortcut on the desktop and choose “Properties”. This is due to a Windows limitation. Make sure you don’t copy
just this truncated(!) target text to use as paste input when creating any new matching shortcut.

Terms of use / Cookie policy

Winaero / Privacy Policy / About Winaero

https://winaero.com/restore-point-windows-10-powershell/ 6/6

You might also like