Click here to Skip to main content
15,904,153 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to get the NAME and DATES of all "restore points" of my system, how can I get these?

What is the location where it is stored??
Posted
Updated 6-Sep-10 22:16pm
v2
Comments
Dalek Dave 7-Sep-10 4:16am    
Minor Edit for Grammar.

I have got the aswer , A wmi query

root\DEFAULT

"select * from SystemRestore"
 
Share this answer
 
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.CreationTimenext
 
Share this answer
 
They in the 'system volume information' hierarchy.

By default you can't get into them.
 
Share this answer
 
Comments
ishan_1988 7-Sep-10 4:25am    
Please tell me , WHERE exactly in system volume information
i mean which file??
i do have access to "system volume information" so dont worry about that ..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900