![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
![]()
Hate to be so stupid, but I haven't been able to figure it out. Any help
would be appreiated... Thanks, Dave |
Ads |
#2
|
|||
|
|||
![]()
Dave wrote:
Hate to be so stupid, but I haven't been able to figure it out. Any help would be appreiated... %SystemRoot%\system32\restore\rstrui.exe Or use the shortcut in your Start Menu: Start - Accessories - System Tools - System Restore |
#3
|
|||
|
|||
![]()
THANK YOU! God, I really feel stupid now.
![]() the timely reply. Dave "VanguardLH" wrote in message ... Dave wrote: Hate to be so stupid, but I haven't been able to figure it out. Any help would be appreiated... %SystemRoot%\system32\restore\rstrui.exe Or use the shortcut in your Start Menu: Start - Accessories - System Tools - System Restore |
#4
|
|||
|
|||
![]()
Dave wrote:
THANK YOU! God, I really feel stupid now. ![]() the timely reply. Dave wrote in message ... Dave wrote: Hate to be so stupid, but I haven't been able to figure it out. Any help would be appreiated... %SystemRoot%\system32\restore\rstrui.exe Or use the shortcut in your Start Menu: Start - Accessories - System Tools - System Restore Hi Dave, No, you are not stupid at all. You are smart enough to know when to ask a question, and smart enough to know who to ask. Everything is so complex these days, and no one knows everything. Regards, Mort Linder |
#5
|
|||
|
|||
![]()
Yes, you can, indeed, create a System Restore point, manually, from within
the System Restore user interface found on the start menu, as described by "VanguardLH". But you can also write a VBS script that you can execute to automatically create a restore point. You can also place a copy of the script, or shortcut to it, in the StartUp folder of your Start Menu, to create one at every system start or logon. Just copy and paste the script below into Notepad or any text-editor, and save it, giving it a [*.VBS] extension : ------------------- copy between lines ------------------- PTitle = "System Restore" Dim Wsh Set Wsh = WScript.CreateObject("WScript.Shell") Set CSRP = getobject("winmgmts:\\.\root\default:Systemrestore ") If (CSRP.createrestorepoint("Manual Restore Point", 0, 100)) = 0 Then Wsh.Popup "Manual Restore Point created." , 5, PTitle Else Wsh.Popup "Restore Point creation failed." , 5, PTitle End If ------------------- copy between lines ------------------- *NB To be an executable VBS script-file that you can double-click on, it's filename MUST end with [vbs] - (for example; "myscript.vbs" ) == Cheers, Tim Meddick, Peckham, London. :-) "Dave" wrote in message netamerica... Hate to be so stupid, but I haven't been able to figure it out. Any help would be appreiated... Thanks, Dave |
#6
|
|||
|
|||
![]() "Mort" wrote in message ... Dave wrote: THANK YOU! God, I really feel stupid now. ![]() for the timely reply. Dave wrote in message ... Dave wrote: Hate to be so stupid, but I haven't been able to figure it out. Any help would be appreiated... %SystemRoot%\system32\restore\rstrui.exe Or use the shortcut in your Start Menu: Start - Accessories - System Tools - System Restore Hi Dave, No, you are not stupid at all. You are smart enough to know when to ask a question, and smart enough to know who to ask. Everything is so complex these days, and no one knows everything. Regards, Mort Linder God, thank you Mort. Much appreciated. Best, Dave |
Thread Tools | |
Display Modes | |
|
|