Reference for Win32_ShadowCopy
(Diese Seite wurde noch nicht auf das neue Layout umgestellt!)

Select by Class Type Search by Keyword
Show all classes

Category (Kategorie):

Disks and Storage

Description (Beschreibung):

The Win32_ShadowCopy class is a storage extent that represents a duplicate copy of the original volume at some previous time.

Availability (Verfügbarkeit):

WMI Class NameWindows Server 2003Windows XP ProfessionalWindows 2000Windows NT 4.0Windows 98
Win32_ShadowCopyYes----

Properties (Attribute):

ItemServer 2003XP ProWindows 2000NT 4.0Windows 98
CaptionYes----
ClientAccessibleYes----
CountYes----
DescriptionYes----
DeviceObjectYes----
DifferentialYes----
ExposedLocallyYes----
ExposedNameYes----
ExposedPathYes----
ExposedRemotelyYes----
HardwareAssistedYes----
IDYes----
ImportedYes----
InstallDateYes----
NameYes----
NoAutoReleaseYes----
NotSurfacedYes----
NoWritersYes----
OriginatingMachineYes----
PersistentYes----
PlexYes----
ProviderIDYes----
ReadWriteYes----
ServiceMachineYes----
SetIDYes----
StateYes----
StatusYes----
TransportableYes----
VolumeNameYes----

Methods (Methoden):

ItemServer 2003XP ProWindows 2000NT 4.0Windows 98
CreateYes----

Sample Code (Beispiel):

strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_ShadowCopy")
For Each objItem in colItems
    Wscript.Echo "Caption: " & objItem.Caption
Next

Links:

Link zur Original-Microsoft-Dokumentation