Interfaccia IVssSnapshotMgmt (vsmgmt.h)
L'interfaccia IVssSnapshotMgmt fornisce un metodo che restituisce un'interfaccia per configurare ulteriormente un provider di copia shadow.
Ereditarietà
L'interfaccia IVssSnapshotMgmt eredita dall'interfaccia IUnknown . IVssSnapshotMgmt include anche questi tipi di membri:
Metodi
L'interfaccia IVssSnapshotMgmt include questi metodi.
IVssSnapshotMgmt::GetProviderMgmtInterface Restituisce un'interfaccia per configurare ulteriormente il provider di sistema. |
IVssSnapshotMgmt::QuerySnapshotsByVolume Riservato per l'utilizzo nel sistema. (IVssSnapshotMgmt.QuerySnapshotsByVolume) |
IVssSnapshotMgmt::QueryVolumesSupportedForSnapshots Riservato per l'utilizzo nel sistema. (IVssSnapshotMgmt.QueryVolumesSupportedForSnapshots) |
Commenti
L'interfaccia IVssSnapshotMgmt può essere richiamata in remoto usando DCOM. Il chiamante deve essere membro del gruppo amministratori locali nel computer remoto.
Esempio
#include "vss.h"
#include "vsmgmt.h"
void main()
{
// software-provider id is {b5946137-7b9f-4925-af80-51abd60b20d5}
const VSS_ID ProviderId = { 0xb5946137,
0x7b9f,
0x4925,
{ 0xaf,0x80,0x51,0xab,0xd6,0xb,0x20,0xd5 } };
HRESULT hr = S_OK;
IVssSnapshotMgmt* pMgmt = NULL;
IVssDifferentialSoftwareSnapshotMgmt* pDiffMgmt = NULL;
hr = CoCreateInstance(CLSID_VssSnapshotMgmt,
NULL,
CLSCTX_ALL,
IID_IVssSnapshotMgmt,
(void**)&(pMgmt));
if (FAILED(hr))
{
// error handling code
}
hr = pMgmt->GetProviderMgmtInterface(ProviderId,
IID_IVssDifferentialSoftwareSnapshotMgmt,
(IUnknown**)&pDiffMgmt);
if (FAILED(hr))
{
pMgmt->Release();
}
// processing code
pDiffMgmt->Release();
pMgmt->Release();
}
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows Vista [solo app desktop] |
Server minimo supportato | Windows Server 2003 [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | vsmgmt.h |