To create a restore point for windows 7 Start / Control Panel / System / System Protection / At bottom of screen last button on right says create. Click it and it will ask you to create a restore point discription for the restore. hope this helps you.
How to create restore point in windows 7
- I just bought a new computer that's running windows 7. My previous computer had XP. I would open system restore create my own restore points periodically. Is there a way to do that in windows 7. When i open system restore, the only option I get is restore to an earlier date. Not create a restore point.
Windows for home | Previous Windows versions | Recovery and backup
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Under WinXP the creation of restore points and the restore function itself were in the same place. Under Windows 7 you have a couple of methods:
- Control Panel / System / System protection
- Through the script below.
To do it with a script, save the code below as ManualRestorePoint.vbs, then double-click it.
'------------------------------------------------------
'Create an instant System Restore Point under Windows 7
'------------------------------------------------------
If WScript.Arguments.Count = 0 Then
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
_________________________
If this was helpful, please vote by clicking the green triangle. If it solves the issue, click "Propose as Answer". Thanks.
64 additional answers
Sort by: Oldest
-
Anonymous
2012-04-28T00:22:57+00:00 I like to know how to run a restore point from a prompt. Now THAT'S useful.
Read this whole ancient thread, not just the very last bit.
I might be college educated but I can't spell for s******. Shame on me, because I scanned this thread and I still can't find anything referencing
some manner in which to run a System Restore from a C:> aka "a prompt" . It's surprising at how many people can't work at a prompt. Damn shame too, since Windows next server version will require some work at the prompt. Every single version of Windows allows quite a number of operations to execute at C:> .
I just haven't found this one, and it should be a keeper for my little red 'Cheats" book.
-
Deleted
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more
-
Anonymous
2012-07-20T04:05:19+00:00 EASY STEPS HOW TO CREATE A RESTORE POINT:
- right click on my computer and select properties
- click on system protection
- now you can either create a restore point or choose to restore.
Thanks and good luck.
Wahid AFG