如何获得所有还原点的名称和日期? [英] How can i get the name and date of all restore points?

查看:54
本文介绍了如何获得所有还原点的名称和日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想获取系统中所有还原点"的名称和日期,如何获得这些?

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??

推荐答案

我得到了aswer,一个wmi查询

root \ DEFAULT

从SystemRestore中选择*"
I have got the aswer , A wmi query

root\DEFAULT

"select * from SystemRestore"


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


它们位于系统卷信息"层次结构中.
默认情况下,您无法进入它们.
They in the ''system volume information'' hierarchy.

By default you can''t get into them.


这篇关于如何获得所有还原点的名称和日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆