Поделиться через


Загрузка виртуальных жестких диска

[Начиная с Windows 8 и Windows Server 2012, COM-интерфейс службы виртуальных дисков замечается API управления хранилищем Windows.]

Загрузка и инициализация VDS

  1. Отпустите интерфейсы, отличные от NULL.

  2. Вызовите функцию CoCreateInstance, CoCreateInstanceEx или CoGetClassObject , чтобы получить указатель на объект загрузчика службы.

    CLSCTX_DISABLE_AAA нельзя указать в этом вызове. Если вызывается coInitializeSecurity , EOAC_DISABLE_AAA нельзя указать в параметре dwCapabilities .

  3. Вызовите метод IVdsServiceLoader::LoadService для загрузки VDS.

    Передача null в качестве первого параметра загружает и инициализирует VDS на локальном узле.

  4. Вызовите метод IVdsService::WaitForServiceReady , чтобы дождаться завершения инициализации VDS.

В следующем примере кода инициализируется служба, которая возвращает указатель на объект службы.

#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);
        }
    }
}

Использование VDS

IVdsService::WaitForServiceReady

IVdsServiceLoader::LoadService

Объекты установки и службы