Easy restore points (Windows)
If you use the Windows´option “Restore point”, I will show you an easy way to make these restore points:
- Right Click in your desktop and create a new Text document.
- Open this text document and type these code (VBS):
Set sr = getobject(“winmgmts:\\.\root\default:Systemrestore”)
msg = “A new restore point has been created.” & vbCR
msg = msg & “The name is: ” & vbCR
msg = msg & “Automatic Restore Point ” & Date & ” ” & Time
If (sr.createrestorepoint(“Automatic Restore Point”, 0, 100)) = 0
Then
MsgBox msg
end if
Save this text and close the file. Rename this file to RestorePoint.vbs (click Yes when Windows advices you about this change).
That´s all. Everytime you click on this file in your Desktop, a new restore point will be automatically created.
Written by Jose Leon - Visit Website
