Making a system restore point is important if you’re going to make any significant changes to your system. This restore point allows you to undo your changes in case something goes wrong.
You can use the following commands in a batch file to automate the process of creating a restore point. In the code, feel free to replace “RestorePointName” with the name you like.
You need to run this batch file as an administrator.
@echo off
echo Creating System Restore Point...
wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint "RestorePointName", 100, 7
echo System Restore Point created.
pause
Leave A Comment?