System Restore when log on
flag
10 messages - Collapse all
/groups/adfetch?hl=en&adid=CaHbwREAAABo1z7HtU4ePLXRAsMYLeQMnT3luubDeskUok6AUQ17nQ
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
1.  Ted Li  
View profile  
 More options Aug 31 2006, 4:16 am
Newsgroups: microsoft.public.windowsxp.help_and_support
From: Ted Li <Te...@discussions.microsoft.com>
Date: Thu, 31 Aug 2006 01:16:03 -0700
Local: Thurs, Aug 31 2006 4:16 am
Subject: System Restore when log on
Does anyone knows how to write a script or any third party product that can
schedule system restore run and restore the computer to a specified restore
point whenever a user logon to the system. The reason is we need to restore
our internet cafe machine   to original state after it's used to make sure no
virus, no spyware ... was installed on the machine

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
2.  RobDee  
View profile  
 More options Aug 31 2006, 4:57 am
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "RobDee" <r...@terra.es>
Date: Thu, 31 Aug 2006 10:57:03 +0200
Local: Thurs, Aug 31 2006 4:57 am
Subject: Re: System Restore when log on

"Ted Li" <Te...@discussions.microsoft.com> wrote in message

news:A27191C5-BE3A-45B2-88C9-4B54D011ED64@microsoft.com...

> Does anyone knows how to write a script or any third party product that
> can
> schedule system restore run and restore the computer to a specified
> restore
> point whenever a user logon to the system. The reason is we need to
> restore
> our internet cafe machine   to original state after it's used to make sure
> no
> virus, no spyware ... was installed on the machine

http://www.faronics.com/html/deepfreeze.asp

Rob


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
3.  Ted Li  
View profile  
 More options Sep 2 2006, 7:37 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: Ted Li <Te...@discussions.microsoft.com>
Date: Sat, 2 Sep 2006 16:37:01 -0700
Local: Sat, Sep 2 2006 7:37 pm
Subject: Re: System Restore when log on
Thanks a lot. This is what I'm looking after. This software is so great.

Ted


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
4.  Bert Kinney  
View profile  
 More options Aug 31 2006, 11:16 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "Bert Kinney" <b...@NSmvps.org>
Date: Thu, 31 Aug 2006 23:16:32 -0400
Local: Thurs, Aug 31 2006 11:16 pm
Subject: Re: System Restore when log on
Hi Ted,

Previously posted by: Ramesh Srinivasan, Microsoft MVP [Windows XP
Shell/User]

Using Windows Scripting / WMI.

Restore Method of the SystemRestore Class:
http://windowssdk.msdn.microsoft.com/en-us/library/ms723713.aspx

"Initiates a system restore. The caller must force a system reboot. The
actual restoration occurs during the reboot"

You want to provide a Sequence number of the restore point, which can
also
be retrieved using enumeration.

Print the list of all available System Restore points to a file:
http://windowsxp.mvps.org/listsr.htm

--
Regards,
Bert Kinney MS-MVP Shell/User
http://bertk.mvps.org
Member: http://dts-l.org

"Ted Li" wrote


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
5.  Ted Li  
View profile  
 More options Sep 2 2006, 7:40 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: Ted Li <Te...@discussions.microsoft.com>
Date: Sat, 2 Sep 2006 16:40:02 -0700
Local: Sat, Sep 2 2006 7:40 pm
Subject: Re: System Restore when log on
The script for "list of sequence of restore point" works fine, but the script
for "initiate system restore" is confusing, I can't make it work. Any idea?

Ted


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
6.  Ramesh, MS-MVP  
View profile  
 More options Sep 3 2006, 6:01 am
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "Ramesh, MS-MVP" <ram...@XOX.mvps.org>
Date: Sun, 3 Sep 2006 15:31:15 +0530
Local: Sun, Sep 3 2006 6:01 am
Subject: Re: System Restore when log on
Ted,

It looks like you've found a third-party alternative. Anyway, I'm posting a
sample script which will rollback the system to a specific system restore
point (sequence id mentioned).

- - -
Set Args = wscript.Arguments
RpNum = 156 'This is the Sequence ID
Set obj =
GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRes tore")
if obj.Restore(RpNum) <> 0 Then
    wscript.Echo "Restore failed"
End If
Set OpSysSet =
GetObject("winmgmts:{(Shutdown)}//./root/cimv2").ExecQuery("select * from
Win32_OperatingSystem where Primary=true")
for each OpSys in OpSysSet
    OpSys.Reboot()
next
- - -

Paste the contents to Notepad, and save it with .vbs extension (example,
"restore_156.vbs") and run the file. It will reboot once, and System Restore
rollback takes place on the next startup.

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com

"Ted Li" <Te...@discussions.microsoft.com> wrote in message

news:76264553-C9CC-4BDC-B0B7-5135224CC70D@microsoft.com...
The script for "list of sequence of restore point" works fine, but the
script
for "initiate system restore" is confusing, I can't make it work. Any idea?

Ted


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
7.  Bert Kinney  
View profile  
 More options Sep 3 2006, 12:53 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "Bert Kinney" <b...@NSmvps.org>
Date: Sun, 3 Sep 2006 12:53:03 -0400
Local: Sun, Sep 3 2006 12:53 pm
Subject: Re: System Restore when log on
Hi Ramesh,

Do you have a web page on this? <hint>

--
Regards,
Bert Kinney MS-MVP Shell/User
http://bertk.mvps.org
Member: http://dts-l.org

"Ramesh, MS-MVP" wrote


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
8.  Ramesh, MS-MVP  
View profile  
 More options Sep 3 2006, 1:42 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "Ramesh, MS-MVP" <ram...@XOX.mvps.org>
Date: Sun, 3 Sep 2006 23:12:50 +0530
Local: Sun, Sep 3 2006 1:42 pm
Subject: Re: System Restore when log on
Not yet, Bert. Thanks for the idea :)

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com

"Bert Kinney" <b...@NSmvps.org> wrote in message

news:ulHXtl3zGHA.996@TK2MSFTNGP03.phx.gbl...
Hi Ramesh,

Do you have a web page on this? <hint>

--
Regards,
Bert Kinney MS-MVP Shell/User
http://bertk.mvps.org
Member: http://dts-l.org


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
9.  Ted Li  
View profile  
 More options Sep 3 2006, 8:58 pm
Newsgroups: microsoft.public.windowsxp.help_and_support
From: Ted Li <Te...@discussions.microsoft.com>
Date: Sun, 3 Sep 2006 17:58:01 -0700
Local: Sun, Sep 3 2006 8:58 pm
Subject: Re: System Restore when log on
Thanks so much. You are champ.

Ted


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
10.  Ramesh, MS-MVP  
View profile  
 More options Sep 4 2006, 12:27 am
Newsgroups: microsoft.public.windowsxp.help_and_support
From: "Ramesh, MS-MVP" <ram...@XOX.mvps.org>
Date: Mon, 4 Sep 2006 09:57:24 +0530
Local: Mon, Sep 4 2006 12:27 am
Subject: Re: System Restore when log on
You're welcome Ted.

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows XP Shell/User]
Windows® XP Troubleshooting http://www.winhelponline.com

"Ted Li" <Te...@discussions.microsoft.com> wrote in message

news:2B2C675C-2672-4E36-AE51-7B333DC9681C@microsoft.com...
Thanks so much. You are champ.

Ted


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google