Skip to content

Latest commit

 

History

History
103 lines (65 loc) · 2.65 KB

control-listbackups.md

File metadata and controls

103 lines (65 loc) · 2.65 KB
description ms.assetid ms.tgt_platform title ms.topic ms.date topic_type api_name api_type api_location
Returns the list of the saved backup configuration files that can be restored.
9487c50e-ef3b-425f-92ef-0614290e9af4
multiple
ListBackups method of the Control class
reference
05/31/2018
APIRef
kbSyntax
Control.ListBackups
COM
BEvtCol.exe

ListBackups method of the Control class

Returns the list of the saved backup configuration files that can be restored.

Syntax

void ListBackups(
  [out] Uint32 OriginalTimestampLow,
  [out] Uint32 OriginalTimestampHigh,
  [out] string Files[],
  [out] Uint32 FilesTimestampLow[],
  [out] Uint32 FilesTimestampHigh[]
);

Parameters

OriginalTimestampLow [out]

The timestamp of when the current configuration was set (if restored from backup, will contain the original timestamp). This is the low part of FILETIME.

OriginalTimestampHigh [out]

The timestamp of when the current configuration was set (if restored from backup, will contain the original timestamp). This is the high part of FILETIME.

Files [out]

The list of available backup files, in order from the newest to the oldest.

FilesTimestampLow [out]

For each backup file, the timestamp of when its configuration was set. This is the low part of FILETIME.

FilesTimestampHigh [out]

For each backup file, the timestamp of when its configuration was set. This is the high part of FILETIME.

Return value

This method does not return a value.

Requirements

Requirement Value
Minimum supported client
Windows 10 [desktop apps only]
Minimum supported server
Windows Server 2016
Namespace
Root\Microsoft\Windows\BootEventCollector
MOF
BootEventCollectorWMI.mof
DLL
BEvtCol.exe

See also

Control