How to create restore point in windows 7

Anonymous
2010-01-10T14:30:17+00:00
  • 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.

0 comments No comments
Answer accepted by question author
Anonymous
2011-07-26T12:31:26+00:00

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.

Was this answer helpful?

200+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2010-01-10T22:12:05+00:00

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.

Was this answer helpful?

10+ people found this answer helpful.
0 comments No comments

64 additional answers

Sort by: Oldest
  1. Anonymous
    2014-04-15T15:20:34+00:00

    I'm getting the following error while creating restore point.

    "the specific object was not found (0x80042308)."

    what may be the reason.

    And I've bad sectors in my driver C:

    I tried "C drive properties-- tools-- check now-- scan & fix bad sectors" few times but still I've bad sectors.

    how to solve these problems permanently. Plz Help

    Thank you. 

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2014-04-16T05:19:58+00:00

    Bad sectors then is time for a new HDD.  Don't bother try repairing bad sectors. Sorry

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2014-08-28T21:49:37+00:00

    Well, that way didn't work for me, but I was successful by

    click on START

    Right click on MY COMPUTER

    click on PROPERTIES

    click on SYSTEM PROTECTION

    click on PROTECTION

    click on CREATE

    give it a name.

    Good luck

    Joe

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments