Directory Services |
The IADsServiceOperations::Continue method resumes a service operation paused by the IADsServiceOperations::Pause method.
HRESULT Continue();
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 restart a paused Microsoft Fax Service on a computer running on 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_PAUSED) Then ' The operation has paused. so.Continue 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 restarts a Microsoft Fax Service running on Windows 2000.
IADsContainer *pCont = NULL; IADsServiceOperations *pSrvOp = NULL; LPWSTR adsPath = L"WinNT://myMachine,computer"; IDispatch *pDisp; HRESULT hr = S_OK; 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;} long status; hr = pSrvOp->get_Status(&status); if(FAILED(hr)) {goto Cleanup;} if(status == ADS_SERVICE_PAUSED) pSrvOp->Continue(); 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.
IADsService, IADsServiceOperations, IADsServiceOperations::Pause