本文介绍了如何获得所有还原点的名称和日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想获取系统中所有还原点"的名称和日期,如何获得这些?
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??
推荐答案
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
这篇关于如何获得所有还原点的名称和日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!