![]() |
What is a restore point?
It is a collection of a stored state of our computer's system files. We can use a restore point to restore our computer previous state at earlier time.Restore points are created automatically by system weekly or when it detects any change driver utilities or installation of a new software. I will be discussing how to on this task through task scheduler for automatic creation of system restore point.You can create a restore point manually at any time by following the steps below.Create a restore point
- Open System by clicking the Start button
, right-clicking Computer, and then clicking Properties.
- In the left pane, click System protection.
If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
- Click the System Protection tab, and then click Create.
Create your restore point in Just Single Click
- Open an notepad and copy the below code in it.
- Go to File save as and save it as any_name.vbs.
- Choose the location wherever you want to store.
----------------------------------------------------------------------
Set oShell = CreateObject("Shell.Application")
oShell.ShellExecute "wscript.exe", """" _
& WScript.ScriptFullName & """ Run", , "runas", 1
Else
Set oWshShell = WScript.CreateObject("WScript.Shell")
oWshShell.Popup "Creating a SystemRestore point. Please wait.", _
2, "System Restore", 0
swinmgmts = "winmgmts:\\.\root\default:Systemrestore"
GetObject(swinmgmts).CreateRestorePoint _
"Manual Restore Point", 0, 100
MsgBox "System Restore Point created", 0, "System Restore"
End If
- Open System by clicking the Start button
, right-clicking Computer, and then clicking Properties.
- In the left pane, click System protection.
If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
- Click the System Protection tab, then click on system restore a new window will open like this.
![]() |
click to enlarge |
![]() |
click to enlarge |