SystemRestore 类的 Restore 方法

启动系统还原。 调用方必须强制重启系统。 实际还原发生在重新启动期间。

语法

uint32 Restore(
  [in] uint32 SequenceNumber
);

parameters

SequenceNumber [in]

还原点的序列号。 若要确定特定还原点的序列号,请枚举系统上的所有还原点。

返回值

如果方法成功,则返回值S_OK。 否则,方法将返回 WinError.h 中定义的 COM 错误代码之一。

示例

'Restore Method of the SystemRestore Class
'Initiates a system restore. The caller must 
'force a system reboot. The actual restoration 
'occurs during the reboot.
Set Args = wscript.Arguments
RpNum = Args.item(0)
Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
if obj.Restore(RpNum) <> 0 Then
    wscript.Echo "Restore failed"
End If
Set OpSysSet = GetObject("winmgmts:{(Shutdown)}//./root/cimv2").ExecQuery("select * from Win32_OperatingSystem where Primary=true")
for each OpSys in OpSysSet
    OpSys.Reboot()
next

要求

要求
最低受支持的客户端
Windows XP [仅限桌面应用]
最低受支持的服务器
无受支持的版本
命名空间
Root\\Default
MOF
Sr.mof

请参阅

SystemRestore