mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
4728157154
- PrintService: Print optional display name. - MainUsage: Print missing query options. - Parse query options and use them to enumerate services.
90 lines
2.1 KiB
C
90 lines
2.1 KiB
C
/*
|
|
* PROJECT: ReactOS Services
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/applications/sc/start.c
|
|
* PURPOSE: Start a service
|
|
* COPYRIGHT: Copyright 2005 - 2006 Ged Murphy <gedmurphy@gmail.com>
|
|
*
|
|
*/
|
|
|
|
#include "sc.h"
|
|
|
|
BOOL Start(LPCTSTR ServiceName, LPCTSTR *ServiceArgs, INT ArgCount)
|
|
{
|
|
SC_HANDLE hSCManager = NULL;
|
|
SC_HANDLE hSc = NULL;
|
|
LPSERVICE_STATUS_PROCESS pServiceInfo = NULL;
|
|
BOOL bResult = TRUE;
|
|
|
|
#ifdef SCDBG
|
|
LPCTSTR *TmpArgs = ServiceArgs;
|
|
INT TmpCnt = ArgCount;
|
|
_tprintf(_T("service to control - %s\n"), ServiceName);
|
|
_tprintf(_T("Arguments:\n"));
|
|
while (TmpCnt)
|
|
{
|
|
_tprintf(_T(" %s\n"), *TmpArgs);
|
|
TmpArgs++;
|
|
TmpCnt--;
|
|
}
|
|
_tprintf(_T("\n"));
|
|
#endif /* SCDBG */
|
|
|
|
hSCManager = OpenSCManager(NULL,
|
|
NULL,
|
|
SC_MANAGER_CONNECT);
|
|
if (hSCManager == NULL)
|
|
{
|
|
_tprintf(_T("[SC] OpenSCManager FAILED %lu:\n\n"), GetLastError());
|
|
bResult = FALSE;
|
|
goto done;
|
|
}
|
|
|
|
hSc = OpenService(hSCManager,
|
|
ServiceName,
|
|
SERVICE_START | SERVICE_QUERY_STATUS);
|
|
if (hSc == NULL)
|
|
{
|
|
_tprintf(_T("[SC] OpenService FAILED %lu:\n\n"), GetLastError());
|
|
bResult = FALSE;
|
|
goto done;
|
|
}
|
|
|
|
if (!ArgCount)
|
|
{
|
|
ServiceArgs = NULL;
|
|
}
|
|
|
|
if (!StartService(hSc,
|
|
ArgCount,
|
|
ServiceArgs))
|
|
{
|
|
_tprintf(_T("[SC] StartService FAILED %lu:\n\n"), GetLastError());
|
|
bResult = FALSE;
|
|
goto done;
|
|
}
|
|
|
|
pServiceInfo = QueryService(ServiceName);
|
|
if (pServiceInfo != NULL)
|
|
{
|
|
PrintService(ServiceName,
|
|
NULL,
|
|
pServiceInfo,
|
|
TRUE);
|
|
|
|
HeapFree(GetProcessHeap(), 0, pServiceInfo);
|
|
}
|
|
|
|
done:
|
|
if (bResult == FALSE)
|
|
ReportLastError();
|
|
|
|
if (hSc)
|
|
CloseServiceHandle(hSc);
|
|
|
|
if (hSCManager)
|
|
CloseServiceHandle(hSCManager);
|
|
|
|
return bResult;
|
|
}
|