24 static DWORD dwCheckPoint = 1;
27 if (
status->dwCurrentState == SERVICE_START_PENDING)
29 status->dwControlsAccepted = 0;
33 status->dwControlsAccepted = SERVICE_ACCEPT_STOP;
36 if (
status->dwCurrentState == SERVICE_RUNNING
37 ||
status->dwCurrentState == SERVICE_STOPPED)
43 status->dwCheckPoint = dwCheckPoint++;
60 SC_HANDLE svc_ctl_mgr;
64 if (GetModuleFileName(NULL, path + 1, _countof(path) - 2) == 0)
71 wcscat_s(path, _countof(path), L
"\"");
73 svc_ctl_mgr = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE);
74 if (svc_ctl_mgr == NULL)
82 service = CreateService(svc_ctl_mgr,
86 SERVICE_WIN32_SHARE_PROCESS,
104 CloseServiceHandle(svc_ctl_mgr);
113 SC_HANDLE svc_ctl_mgr;
116 svc_ctl_mgr = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
117 if (svc_ctl_mgr == NULL)
126 if (StartService(
service, 0, NULL))
128 wprintf(L
"Service Started\n");
143 CloseServiceHandle(svc_ctl_mgr);
152 SC_HANDLE svc_ctl_mgr;
156 svc_ctl_mgr = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
157 if (svc_ctl_mgr == NULL)
167 DELETE | SERVICE_STOP | SERVICE_QUERY_STATUS);
182 if (
status.dwCurrentState == SERVICE_STOP_PENDING)
193 if (
status.dwCurrentState == SERVICE_STOPPED)
199 wprintf(L
"\n%ls failed to stop.\n", ovpn_svc->
display_name);
218 CloseServiceHandle(svc_ctl_mgr);
230 const SERVICE_TABLE_ENTRY dispatchTable_shared[] = {
236 const SERVICE_TABLE_ENTRY dispatchTable_interactive[] = {
241 const SERVICE_TABLE_ENTRY *dispatchTable = dispatchTable_shared;
245 for (
int i = 1; i < argc; i++)
247 if (*
argv[i] == L
'-' || *
argv[i] == L
'/')
249 if (_wcsicmp(L
"install",
argv[i] + 1) == 0)
253 else if (_wcsicmp(L
"remove",
argv[i] + 1) == 0)
257 else if (_wcsicmp(L
"start",
argv[i] + 1) == 0)
261 else if (argc > i + 2 && _wcsicmp(L
"instance",
argv[i] + 1) == 0)
263 if (_wcsicmp(L
"interactive",
argv[i+1]) == 0)
265 dispatchTable = dispatchTable_interactive;
277 wprintf(L
"%ls -install to install the interactive service\n",
APPNAME);
278 wprintf(L
"%ls -start [name] to start the service (name = \"interactive\") is optional\n",
APPNAME);
279 wprintf(L
"%ls -remove to remove the service\n",
APPNAME);
281 wprintf(L
"\nService run-time parameters:\n");
282 wprintf(L
"-instance interactive <id>\n"
283 L
" Runs the service as an alternate instance.\n"
284 L
" The service settings will be loaded from\n"
285 L
" HKLM\\Software\\" _L(
PACKAGE_NAME) L
"<id> registry key, and the service will accept\n"
286 L
" requests on \\\\.\\pipe\\" _L(
PACKAGE) L
"<id>\\service named pipe.\n");
297 wprintf(L
"\nStartServiceCtrlDispatcher being called.\n");
298 wprintf(L
"This may take several seconds. Please wait.\n");
300 if (!StartServiceCtrlDispatcher(dispatchTable))