Posts

Showing posts with the label RESTORING WINDOWS VISTA

How to create a System Restore point in Windows Vista

Image
To create a System Restore point in Windows Vista Creating a System Restore point manually 1.Right-click on the Computer icon in the Desktop, and choose Properties 2. In the left pane, click System Protection 3.Alternately, to access the System Protection tab directly, click Start and type SystemPropertiesProtection.exe. If you are prompted for an administrator password or confirmation, type the password or provide confirmation. 4.Click the System Protection tab, and then click Create. 5.In the System Protection dialog box, type a description, and then click Create. Creating a System Restore point using a shortcut Alternately, you may use the method below: Copy the contents below to a Notepad document, and save it to a file name with .vbs extension (Example: createrp.vbs) and close Notepad. set SRP = getobject("winmgmts:\\.\root\default:Systemrestore")CSRP = SRP.createrestorepoint ("Created a Restore Point now", 0, 100)If CSRP 0 then Msgbox "Error " ...