Reference for Win32_ShadowCopy
|
|
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 Name | Windows Server 2003 | Windows XP Professional | Windows 2000 | Windows NT 4.0 | Windows 98 | Win32_ShadowCopy | Yes | - | - | - | - |
Properties (Attribute): Item | Server 2003 | XP Pro | Windows 2000 | NT 4.0 | Windows 98 | Caption | Yes | - | - | - | - | ClientAccessible | Yes | - | - | - | - | Count | Yes | - | - | - | - | Description | Yes | - | - | - | - | DeviceObject | Yes | - | - | - | - | Differential | Yes | - | - | - | - | ExposedLocally | Yes | - | - | - | - | ExposedName | Yes | - | - | - | - | ExposedPath | Yes | - | - | - | - | ExposedRemotely | Yes | - | - | - | - | HardwareAssisted | Yes | - | - | - | - | ID | Yes | - | - | - | - | Imported | Yes | - | - | - | - | InstallDate | Yes | - | - | - | - | Name | Yes | - | - | - | - | NoAutoRelease | Yes | - | - | - | - | NotSurfaced | Yes | - | - | - | - | NoWriters | Yes | - | - | - | - | OriginatingMachine | Yes | - | - | - | - | Persistent | Yes | - | - | - | - | Plex | Yes | - | - | - | - | ProviderID | Yes | - | - | - | - | ReadWrite | Yes | - | - | - | - | ServiceMachine | Yes | - | - | - | - | SetID | Yes | - | - | - | - | State | Yes | - | - | - | - | Status | Yes | - | - | - | - | Transportable | Yes | - | - | - | - | VolumeName | Yes | - | - | - | - |
Methods (Methoden): Item | Server 2003 | XP Pro | Windows 2000 | NT 4.0 | Windows 98 | Create | Yes | - | - | - | - |
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
www.IT-Visions.de, (C) Dr. Holger Schwichtenberg
|