Condividi tramite


Recupero di un SDO del servizio

Nota

Internet Authentication Service (IAS) è stato rinominato Server dei criteri di rete (NPS) a partire da Windows Server 2008.

 

Il codice seguente recupera un oggetto dati server (SDO) per il server dei criteri di rete .

   HRESULT hr;
   CComPtr<IUnknown> pServiceUnknown;
   _bstr_t bstrServiceName = L"IAS";

   hr = pSdoMachine->GetServiceSDO(
      DATA_STORE_LOCAL,
      bstrServiceName,
      (IUnknown**) &pServiceUnknown
   );
   if (FAILED(hr))
   {
      return hr;
   }

   CComPtr<ISdoServiceControl>  pSdoServiceControl;
   hr = pServiceUnknown->QueryInterface(
      __uuidof(ISdoServiceControl),
      (void**) &pSdoServiceControl
   );
   if (FAILED(hr))
   {
      return hr;
   }

Commenti

È necessario collegarsi a un computer prima di poter chiamare uno dei metodi ISdoMachine .

Collegamento a un computer SDO-Enabled

ISdoMachine::GetServiceSDO

ISdoServiceControl