SystemRestore クラスの GetLastRestoreStatus メソッド
最後のシステム復元の状態を取得します。
構文
uint32 GetLastRestoreStatus();
パラメーター
このメソッドにはパラメーターはありません。
戻り値
メソッドは、次のいずれかの状態値を返します。
戻り値 | 説明 |
---|---|
|
最後の復元に失敗しました。 |
|
最後の復元は成功しました。 |
|
最後の復元が中断されました。 |
例
'GetLastRestoreStatus Method of the SystemRestore Class
'Retrieves the status of the last system restore.
Set obj = GetObject("winmgmts:{impersonationLevel=impersonate}!root/default:SystemRestore")
stat = obj.GetLastRestoreStatus()
If stat = 0 Then
wscript.Echo "Failed"
ElseIf stat = 1 Then
wscript.Echo "Success"
ElseIf stat = 2 Then
wscript.Echo "Interrrupted"
End If
必要条件
要件 | 値 |
---|---|
サポートされている最小のクライアント |
Windows XP [デスクトップ アプリのみ] |
サポートされている最小のサーバー |
サポートなし |
名前空間 |
Root\Default |
MOF |
|