Windows Restore Point
PowerShell script to silently create a System Restore Point of the system drive.
Overview
This script can be used to automate the creation of System Restore Points on client machines, or to create a one-off checkpoint before applying changes to a machine.
Prerequisites: This script has no prerequisites.
Script
https://github.com/wise-io/scripts/blob/main/scripts/CreateRestorePoint.ps1
Examples
Example 1
.\CreateRestorePoint.ps1This example creates a checkpoint with the default description of "Scripted Checkpoint".
Example 2
.\CreateRestorePoint.ps1 -Description 'Installed QuickBooks'This example creates a restore point with the description "Installed QuickBooks".
Parameters
-Description
Optional string parameter that allows you to set a description for the restore point. If not provided, a default description of "Scripted Checkpoint" will be used.
Last updated
Was this helpful?