D DPost Apr 12, 2005 #1 Is there a way to create a restore point say at, 9:00 am 12:noon 6:00 pm every day. automatically. thanks D.
Is there a way to create a restore point say at, 9:00 am 12:noon 6:00 pm every day. automatically. thanks D.
R Ramesh, MS-MVP Apr 12, 2005 #2 It's possible using WMI. But, here is a compiled program: http://www.dougknox.com/xp/utils/xp_sysrestorepoint.htm How To Use the System Restore Utility with Windows Management Instrumentation in Windows XP: http://support.microsoft.com/default.aspx?scid=kb;en-us;295299 <quote> To Create a System Restore Point: set SRP = getobject("winmgmts:\\.\root\default:Systemrestore") CSRP = SRP.createrestorepoint ("this is a test", 0, 100) </quote>
It's possible using WMI. But, here is a compiled program: http://www.dougknox.com/xp/utils/xp_sysrestorepoint.htm How To Use the System Restore Utility with Windows Management Instrumentation in Windows XP: http://support.microsoft.com/default.aspx?scid=kb;en-us;295299 <quote> To Create a System Restore Point: set SRP = getobject("winmgmts:\\.\root\default:Systemrestore") CSRP = SRP.createrestorepoint ("this is a test", 0, 100) </quote>