SystemRestore 클래스의 GetLastRestoreStatus 메서드
마지막 시스템 복원의 상태 검색합니다.
구문
uint32 GetLastRestoreStatus();
매개 변수
이 메서드에는 매개 변수가 없습니다.
반환 값
메서드는 다음 상태 값 중 하나를 반환합니다.
반환 값 | Description |
---|---|
|
마지막 복원에 실패했습니다. |
|
마지막 복원에 성공했습니다. |
|
마지막 복원이 중단되었습니다. |
예제
'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 |
|