25 October 2012

Have a computer crash,Than create your system restore point in a click!!!

crash


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


  1. Open System by clicking the Start button Picture of the Start button, right-clicking Computer, and then clicking Properties.
  2. In the left pane, click System protectionAdministrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
  3. Click the System Protection tab, and then click Create.
           In the System Protection dialog box, type a description, and then click Create.

Open System Restore by clicking the Start button Picture of the Start button. In the search box, type System Restore, and then, in the list of results, click System Restore.‌ Administrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.



Create your restore point in Just Single Click


  1. Open an notepad and copy the below code in it.
  2. Go to File save as and save it as any_name.vbs.
  3. Choose the location wherever you want to store.

----------------------------------------------------------------------
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 
------------------------------------------------------------------------
   
       4. Now click on it. You restore point will be created automatically.
       
       5. You can also change the name of Restore point created just Edit the name in "Manual Restore Point"  
            to any name.

How to Install Your Restore Point?

  1. Open System by clicking the Start button Picture of the Start button, right-clicking Computer, and then clicking Properties.
  2. In the left pane, click System protectionAdministrator permission required If you're prompted for an administrator password or confirmation, type the password or provide confirmation.
  3. Click the System Protection tab, then click on system restore a new window will open like this.

sysrestore
click to enlarge

      4. Click on Choose a different restore point. You will get the following dialog box.
     It will show your last created restore points.Select and your computer will be restored to that point.




sysrest
click to enlarge


For any queries comment below.


Author-