Must work for WinXp - Vista - Windows 7

link|improve this question

55% accept rate
2  
What's wrong with WMI? – SLaks Feb 25 '10 at 15:12
WMI should be available on the platforms that you require. It might be a problem with Win 2000 though. – 0xA3 Feb 25 '10 at 15:23
@divo: System Restore does not exist on Windows 2000. – SLaks Feb 25 '10 at 20:21
@SLaks: So even less reason not to use WMI ;) – 0xA3 Feb 25 '10 at 20:57
feedback

1 Answer

up vote 1 down vote accepted

After having a short look at the available documentation it seems that there is no way around WMI if you want to list existing restore points.

The Windows API only offers you functions for setting and removing restore points:

MSDN also has samples how to use these methods.

For listing the existing restore points you can use the VBScript sample code from here (Note that the code needs elevation on Vista and above):

Set RPSet = GetObject("winmgmts:root/default").InstancesOf ("SystemRestore")
for each RP in RPSet
    wscript.Echo "Dir: RP" & RP.SequenceNumber & ", Name: " & RP.Description & ", Type: ", RP.RestorePointType & ", Time: " & RP.CreationTime
next
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.