Directory Services |
The IADsServiceOperations::Start method starts a network service.
HRESULT Start();
This method supports the standard return values, including S_OK. For more information about other return values, see ADSI Error Codes.
The following code example shows how to start the Microsoft Fax Service on a computer running Windows 2000.
Dim cp As IADsComputer Dim so As IADsServiceOperations On Error GoTo Cleanup Set cp = GetObject("WinNT://myMachine,computer") Set so = cp.GetObject("Service", "Fax") If (so.Status <> ADS_SERVICE_RUNNING) Then ' The operation is not running. so.Start End If Cleanup: If (Err.Number<>0) Then MsgBox("An error has occurred. " & Err.Number) End If Set cp = Nothing Set so = Nothing
The following code example shows how to start the Microsoft Fax Service on a computer running Windows 2000.
IADsContainer *pCont = NULL; IADsServiceOperations *pSrvOp = NULL; LPWSTR adsPath = L"WinNT://myMachine,computer"; IDispatch *pDisp = NULL; HRESULT hr = S_OK; long status = 0; hr = ADsGetObject(adsPath,IID_IADsContainer,(void**)&pCont); if(FAILED(hr)) {goto Cleanup;} hr = pCont->GetObject(CComBSTR("Service"), CComBSTR("Fax"), &pDisp); if(FAILED(hr)) {goto Cleanup;} hr = pDisp->QueryInterface(IID_IADsServiceOperations,(void**)&pSrvOp); if(FAILED(hr)) {goto Cleanup;} hr = pSrvOp->get_Status(&status); if(FAILED(hr)) {goto Cleanup;} if(status != ADS_SERVICE_RUNNING) pSrvOp->Start(); Cleanup: if(pDisp) pDisp->Release(); if(pCont) pCont->Release(); if(pSrvOp) pSrvOp->Release();
Client: Included in Windows XP and
Windows 2000 Professional.
Server: Included in Windows Server 2003 and
Windows 2000 Server.
Redistributable: Requires Active Directory Client Extension
on Windows NT 4.0 SP6a and Windows 95/98/Me.
Header: Declared in Iads.h.