Attachement à un ordinateur SDO-Enabled
Le code suivant s’attache à l’ordinateur local en tant qu’ordinateur SDO.
HRESULT hr;
CComPtr<ISdoMachine> pSdoMachine;
CLSID clsid;
hr = CLSIDFromProgID(TEXT("IAS.SdoMachine"), &clsid);
if (FAILED(hr))
{
return hr;
}
hr = CoCreateInstance(
clsid,
NULL,
CLSCTX_INPROC_SERVER,
__uuidof(ISdoMachine),
(void**)&pSdoMachine
);
if (FAILED(hr))
{
return hr;
}
//
// Pass NULL to specify local computer.
//
hr = pSdoMachine->Attach(NULL);
if (FAILED(hr))
{
return hr;
}
L’attachement à un ordinateur en tant qu’ordinateur SDO est la première étape de l’administration de l’ordinateur via SDO.
Pour plus d’informations, consultez ISdoMachine, ISdoMachine::Attach.