IVssBackupComponents::DisableWriterInstances method (vsbackup.h)
The DisableWriterInstances method disables a specified writer instance or instances.
Syntax
HRESULT DisableWriterInstances(
[in] const VSS_ID *rgWriterInstanceId,
[in] UINT cInstanceId
);
Parameters
[in] rgWriterInstanceId
An array containing one or more writer instance identifiers.
[in] cInstanceId
The number of entries in the rgWriterInstanceId array.
Return value
The following are the valid return codes for this method.
Value | Meaning |
---|---|
|
The writer class has been successfully enabled. |
|
The caller does not have sufficient backup privileges or is not an administrator. |
|
The caller is out of memory or other system resources. |
|
The backup components object is not initialized, this method has been called during a restore operation, or this method has not been called within the correct sequence. |
|
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. |
Remarks
If you have multiple running copies of the same writer, they will all have the same writer class identifier, but they will have different writer instance identifiers. Disabling one instance of a writer does not cause the writer's other instances to be disabled.
If you call DisableWriterInstances, you must do so before calling the IVssBackupComponents::GatherWriterMetadata method. If you call GatherWriterMetadata first and then call DisableWriterInstances, the call to DisableWriterInstances has no effect. If you need to call GatherWriterMetadata first, to determine which writer instances to disable, you must call it from a different instance of the IVssBackupComponents interface.
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 |
See also
IVssBackupComponents::DisableWriterClasses