The ControlService function sends a control code to a Win32-based service.
BOOL ControlService(
SC_HANDLE hService, |
// handle to service |
DWORD dwControl, |
// control code |
LPSERVICE_STATUS lpServiceStatus |
// pointer to service status structure |
); |
Value |
Meaning |
SERVICE_CONTROL_STOP |
Requests the service to stop. The hService handle must have SERVICE_STOP access. |
SERVICE_CONTROL_PAUSE |
Requests the service to pause. The hService handle must have SERVICE_PAUSE_CONTINUE access. |
SERVICE_CONTROL_ |
Requests the paused service to resume. The hService handle must have SERVICE_PAUSE_CONTINUE access. |
SERVICE_CONTROL_ |
Requests the service to update immediately its current status information to the service control manager. The hService handle must have SERVICE_INTERROGATE access. |
SERVICE_CONTROL_ |
The ControlService function fails if this control code is specified. |
This value can also be a user-defined control code, as described in the following table:
Value |
Meaning |
Range 128 to 255. |
The service defines the action associated with the control code. The hService handle must have SERVICE_USER_DEFINED_CONTROL access. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
The following error codes can be set by the service control manager. Other error codes can be set by the registry functions that are called by the service control manager.
Value |
Meaning |
ERROR_ACCESS_DENIED | |
The specified handle was not opened with the necessary access. | |
ERROR_DEPENDENT_SERVICES_RUNNING | |
The service cannot be stopped because other running services are dependent on it. | |
ERROR_INVALID_SERVICE_CONTROL | |
The requested control code is not valid, or it is unacceptable to the service. | |
ERROR_SERVICE_CANNOT_ACCEPT_CTRL | |
The requested control code cannot be sent to the service because the state of the service is SERVICE_STOPPED, SERVICE_START_PENDING, or SERVICE_STOP_PENDING. | |
ERROR_SERVICE_NOT_ACTIVE | |
The service has not been started. | |
ERROR_SERVICE_REQUEST_TIMEOUT | |
The service did not respond to the start request in a timely fashion. |
The ControlService function asks the service control manager to send the requested control code to the service. The service control manager sends the code if the service accepts the control and if the service is in a state in which a control can be sent to it. You cannot stop and start a service unless the security descriptor allows you to. The default security descriptor allows LocalSystem, Administrators, and Power Users to stop and start services. To change the security descriptor of a service, use SetServiceObjectSecurity.
The QueryServiceStatus or function returns a SERVICE_STATUS structure whose dwCurrentState and dwControlsAccepted members indicate the current state and controls accepted by a running service. All running services accept the SERVICE_CONTROL_INTERROGATE control code by default. Each service specifies the other control codes that it accepts when it calls the SetServiceStatus function to report its status. A service should always accept these codes when it is running, no matter what it is doing.
The following table shows the action of the service control manager in each of the possible service states:
Service state |
Stop |
Other controls |
STOPPED |
(c) |
(c) |
STOP_PENDING |
(b) |
(b) |
START_PENDING |
(a) |
(b) |
RUNNING |
(a) |
(a) |
CONTINUE_PENDING |
(a) |
(a) |
PAUSE_PENDING |
(a) |
(a) |
PAUSED |
(a) |
(a) |
(a) |
If the service accepts this control code, send the request to the service; otherwise, ControlService returns zero and GetLastError returns ERROR_INVALID_SERVICE_CONTROL. |
(b) |
The service is not in a state in which a control can be sent to it, so ControlService returns zero and GetLastError returns ERROR_SERVICE_CANNOT_ACCEPT_CTRL. |
(c) |
The service is not active, so ControlService returns zero and GetLastError returns ERROR_SERVICE_NOT_ACTIVE. |
CreateService, OpenService, QueryServiceStatus, SetServiceObjectSecurity, SetServiceStatus, SERVICE_STATUS
file: /Techref/os/win/api/win32/func/src/f07_3.htm, 11KB, , updated: 2000/4/7 11:19, local time: 2024/11/4 20:16,
3.139.97.43:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://ecomorder.com/Techref/os/win/api/win32/func/src/f07_3.htm"> ControlService</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to ecomorder.com! |
.