IsVolumeSnapshottedInternal function (vsbackup.h)
The IsVolumeSnapshotted function determines whether any shadow copies exist for the specified volume.
Syntax
HRESULT IsVolumeSnapshottedInternal(
[in] VSS_PWSZ pwszVolumeName,
[out] BOOL *pbSnapshotsPresent,
[out] LONG *plSnapshotCapability
);
Parameters
[in] pwszVolumeName
Name of the volume. The name of the volume to be checked must be in one of the following formats and must include a trailing backslash (\):
- The path of a mounted folder, for example, Y:\MountX\
- A drive letter, for example, D:\
- A volume GUID path of the form \\?\Volume{GUID}\ (where GUID identifies the volume)
[out] pbSnapshotsPresent
The value of this parameter is TRUE if the volume has a shadow copy, and FALSE if the volume does not have a shadow copy.
[out] plSnapshotCapability
A bit mask (or bitwise OR) of VSS_SNAPSHOT_COMPATIBILITY values that indicates whether certain volume control or file I/O operations are disabled for the given volume if a shadow copy of it exists.
Return value
The return values listed here are in addition to the normal COM HRESULTs that may be returned at any time from the function.
Value | Meaning |
---|---|
|
The function completed successfully. |
|
The caller does not have sufficient backup privileges or is not an administrator. |
|
One of the parameters is not valid. |
|
Out of memory or other system resources. |
|
Expected provider error. The provider logged the error in the event log. For more information, see Event and Error Handling Under VSS. |
|
The specified volume was not found. |
|
Unexpected error. The error code is logged in the error log file. For more information, see
Event and Error Handling Under VSS.
Windows Server 2008, Windows Vista, Windows Server 2003 and Windows XP: This value is not supported until Windows Server 2008 R2 and Windows 7. E_UNEXPECTED is used instead. |
|
Unexpected provider error. The error code is logged in the event log file. For additional information, see Event and Error Handling Under VSS. |
Remarks
Before calling this function, the caller must have initialized COM by calling the CoInitialize function.
If no volume control or file I/O operations are disabled for the selected volume, then the shadow copy capability of the selected volume returned by plSnapshotCapability will be zero.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | vsbackup.h (include VsBackup.h, Vss.h, VsWriter.h) |
Library | VssApi.lib |
DLL | VssApi.dll |