Windows 7 Forums


Reply
Thread Tools

Create Restore Point?

 
 
Brian Gregory [UK]
Guest
Posts: n/a
Thanked:
 
      04-10-2011
How does one manually create a restore point in Windows 7?

--

Brian Gregory. (In the UK)

To email me remove the letter vee.


 
Reply With Quote
 
 
 
 
Big Steel
Guest
Posts: n/a
Thanked:
 
      04-10-2011
On 4/9/2011 10:38 PM, Brian Gregory [UK] wrote:
> How does one manually create a restore point in Windows 7?
>


<http://www.bing.com/search?q=create+a+restore+point+windows+7&form=MSNH14&qs=SC&sk=&pq=crate+a+restore+point+windows+&sp =1&sc=3-30>
 
Reply With Quote
 
Monty
Guest
Posts: n/a
Thanked:
 
      04-10-2011
On Sun, 10 Apr 2011 03:38:45 +0100, "Brian Gregory [UK]"
<> wrote:

>How does one manually create a restore point in Windows 7?


I see this question has been answered but in future you might try the
following procedure.

1. Left click the Start button.

2. In the Search box (the one that says "Search programs and files")
type your search argument. In this case enter restore point

3. If you see a topic which is close to what you want then left click
on it, e.g. "Create a restore point" and follow the instructions.

This is often much quicker than waiting for a response in Usenet.

Not trying to offend but maybe you weren't aware of this help function
in W7.

Cheers,
 
Reply With Quote
 
Andy
Guest
Posts: n/a
Thanked:
 
      04-10-2011


"Brian Gregory [UK]" <> wrote in message
news:...
> How does one manually create a restore point in Windows 7?
>
> --
>
> Brian Gregory. (In the UK)
>
> To email me remove the letter vee.
>
>



Hi,

Copy the following code into a notepad editor and save it as
'CreateRestorePoint.vbs'. You can then click it (or a shortcut to it) and
automatically name and create a restore point from anywhere.

Hope this helps


Andy






If GetOS = "Windows 7" Then
If WScript.Arguments.length =0 Then
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "wscript.exe", """" & _
WScript.ScriptFullName & """" & " uac","", "runas", 1
Else
CreateSRP

End If
End If

Sub CreateSRP

Set SRP = getobject("winmgmts:\\.\root\default:Systemrestore")
sDesc = ""
sDesc = InputBox ("Enter a Restore Point description.", "Create System
Restore Point","")
If Trim(sDesc) <> "" Then
sOut = SRP.createrestorepoint (sDesc, 0, 100)

If sOut <> 0 Then
WScript.echo "Error " & sOut & _
": Unable to create System Restore Point."

End If
End If
End Sub

Function GetOS
Set objWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &
_
".\root\cimv2")
Set colOS = objWMI.ExecQuery("Select * from Win32_OperatingSystem")
For Each objOS in colOS

If instr(objOS.Caption, "Windows 7") Then
GetOS = "Windows 7"

End If
Next
End Function


 
Reply With Quote
 
Dave \Crash\ Dummy
Guest
Posts: n/a
Thanked:
 
      04-10-2011
Brian Gregory [UK] wrote:
> How does one manually create a restore point in Windows 7?


http://windows.microsoft.com/en-us/w...-restore-point
--
Crash

What happens online, stays online.
 
Reply With Quote
 
Brian Gregory [UK]
Guest
Posts: n/a
Thanked:
 
      04-10-2011
"Big Steel" <> wrote in message
news:...
> On 4/9/2011 10:38 PM, Brian Gregory [UK] wrote:
>> How does one manually create a restore point in Windows 7?
>>

>
> <http://www.bing.com/search?q=create+a+restore+point+windows+7&form=MSNH14&qs=SC&sk=&pq=crate+a+restore+point+windows+&sp =1&sc=3-30>


Fair point.

--

Brian Gregory. (In the UK)

To email me remove the letter vee.


 
Reply With Quote
 
Brian Gregory [UK]
Guest
Posts: n/a
Thanked:
 
      04-10-2011
"Monty" <> wrote in message
news:...
> On Sun, 10 Apr 2011 03:38:45 +0100, "Brian Gregory [UK]"
> <> wrote:
>
>>How does one manually create a restore point in Windows 7?

>
> I see this question has been answered but in future you might try the
> following procedure.
>
> 1. Left click the Start button.
>
> 2. In the Search box (the one that says "Search programs and files")
> type your search argument. In this case enter restore point
>
> 3. If you see a topic which is close to what you want then left click
> on it, e.g. "Create a restore point" and follow the instructions.
>
> This is often much quicker than waiting for a response in Usenet.
>
> Not trying to offend but maybe you weren't aware of this help function
> in W7.
>
> Cheers,


Thanks.

--

Brian Gregory. (In the UK)

To email me remove the letter vee.


 
Reply With Quote
 
Brian Gregory [UK]
Guest
Posts: n/a
Thanked:
 
      04-10-2011
"Andy" <> wrote in message
news:B1eop.26626$2...
>
>
> "Brian Gregory [UK]" <> wrote in message
> news:...
>> How does one manually create a restore point in Windows 7?
>>
>> --
>>
>> Brian Gregory. (In the UK)
>>
>> To email me remove the letter vee.
>>
>>

>
>
> Hi,
>
> Copy the following code into a notepad editor and save it as
> 'CreateRestorePoint.vbs'. You can then click it (or a shortcut to it) and
> automatically name and create a restore point from anywhere.
>
> Hope this helps
>
>
> Andy
>
>
>
>
>
>
> If GetOS = "Windows 7" Then
> If WScript.Arguments.length =0 Then
> Set objShell = CreateObject("Shell.Application")
> objShell.ShellExecute "wscript.exe", """" & _
> WScript.ScriptFullName & """" & " uac","", "runas", 1
> Else
> CreateSRP
>
> End If
> End If
>
> Sub CreateSRP
>
> Set SRP = getobject("winmgmts:\\.\root\default:Systemrestore")
> sDesc = ""
> sDesc = InputBox ("Enter a Restore Point description.", "Create System
> Restore Point","")
> If Trim(sDesc) <> "" Then
> sOut = SRP.createrestorepoint (sDesc, 0, 100)
>
> If sOut <> 0 Then
> WScript.echo "Error " & sOut & _
> ": Unable to create System Restore Point."
>
> End If
> End If
> End Sub
>
> Function GetOS
> Set objWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &
> _
> ".\root\cimv2")
> Set colOS = objWMI.ExecQuery("Select * from Win32_OperatingSystem")
> For Each objOS in colOS
>
> If instr(objOS.Caption, "Windows 7") Then
> GetOS = "Windows 7"
>
> End If
> Next
> End Function
>
>


Interesting.
I will try this out.

It could be adapted for all sorts of schemes where restore points are
automatically made in certain situations.

--

Brian Gregory. (In the UK)

To email me remove the letter vee.


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Restore point gets Windows 7 Support 4 10-27-2009 11:49 AM
Cannot create restore point i Win 7 RC Leakimtrebe Windows 7 Support 9 08-20-2009 12:33 AM
How to create restore point Leakimtrebe Windows 7 Support 4 05-28-2009 07:23 PM
Create a System Restore Point - Discussion Ian Article Discussion 0 05-20-2009 12:00 PM
Create a System Restore Point Ian System Administration 0 05-20-2009 12:00 PM


All times are GMT +1. The time now is 05:37 AM.
W7Forums is an independent website and is not affiliated with Microsoft Corporation.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33