Compartir a través de


Carga de VDS

[A partir de Windows 8 y Windows Server 2012, la interfaz COM del servicio de disco virtual se sustituye por la API de administración de almacenamiento de Windows.]

Para cargar e inicializar VDS

  1. Libera interfaces que no son NULL.

  2. Llame a la función CoCreateInstance, CoCreateInstanceEx o CoGetClassObject para obtener un puntero al objeto de cargador de servicios.

    CLSCTX_DISABLE_AAA no se puede especificar en esta llamada. Si se llama a CoInitializeSecurity , no se puede especificar EOAC_DISABLE_AAA en el parámetro dwCapabilities .

  3. Llame al método IVdsServiceLoader::LoadService para cargar VDS.

    Pasar NULL como primer parámetro carga e inicializa VDS en el host local.

  4. Llame al método IVdsService::WaitForServiceReady para esperar a que se complete la inicialización de VDS.

En el ejemplo de código siguiente se inicializa el servicio que devuelve un puntero al objeto de servicio.

#include "initguid.h"
#include "vds.h"
#include <stdio.h>

#pragma comment( lib, "ole32.lib" )

//
// Simple macro to release non-null interfaces.
//
#define _SafeRelease(x) {if (NULL != x) { x->Release(); x = NULL; } }

void __cdecl main(void) 
{
    HRESULT hResult;
    IVdsService *pService = NULL;
    IVdsServiceLoader *pLoader = NULL;

    // For this, you first get a pointer to the VDS Loader
    // Launch the VDS service. 
    //

    hResult = CoInitialize(NULL);

    if (SUCCEEDED(hResult)) 
    {
    
        hResult = CoCreateInstance(CLSID_VdsLoader,
            NULL,
            CLSCTX_LOCAL_SERVER,
            IID_IVdsServiceLoader,
            (void **) &pLoader);

        // 
        // And then load VDS on the local computer.
        //
        if (SUCCEEDED(hResult)) 
        {
            hResult = pLoader->LoadService(NULL, &pService);
        }

        //
        // You're done with the Loader interface at this point.
        //
        _SafeRelease(pLoader); 
        
        if (SUCCEEDED(hResult)) 
        {
            hResult = pService->WaitForServiceReady();
            if (SUCCEEDED(hResult)) 
            {
                //
                // You obtained an interface to the service: pService.
                // This interface can now be used to query for providers 
                // and perform other operations. 
                //
                printf("VDS Service Loaded");
            }

        } 
        else 
        {
            printf("VDS Service failed hr=%x\n",hResult);
        }
    }
}

Uso de VDS

IVdsService::WaitForServiceReady

IVdsServiceLoader::LoadService

Configuración y objetos de servicio