Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
The following code attaches to the local computer as an SDO computer.
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;
}
Attaching to a computer as an SDO computer is the first step in administering the computer through SDO.
For more information, see ISdoMachine, ISdoMachine::Attach.
Send comments about this topic to Microsoft
Build date: 10/15/2007