Python win32serviceutil.ControlService() Examples
The following are 6
code examples of win32serviceutil.ControlService().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
win32serviceutil
, or try the search function
.
Example #1
Source File: platform_windows.py From scalyr-agent-2 with Apache License 2.0 | 6 votes |
def request_agent_status(self): """Invoked by a process that is not the agent to request the current agent dump the current detail status to the status file. This is used to implement the 'scalyr-agent-2 status -v' feature. @return: If there is an error, an errno that describes the error. errno.EPERM indicates the current does not have permission to request the status. errno.ESRCH indicates the agent is not running. """ try: win32serviceutil.ControlService( _SCALYR_AGENT_SERVICE_, _SERVICE_CONTROL_DETAILED_REPORT_ ) except win32api.error as e: if e[0] == winerror.ERROR_SERVICE_NOT_ACTIVE: return errno.ESRCH elif e[0] == winerror.ERROR_SERVICE_DOES_NOT_EXIST: raise AgentNotRunning( "The operating system indicates the Scalyr Agent Service is not installed. " "This indicates a failed installation. Try reinstalling the agent." ) else: raise e
Example #2
Source File: win32.py From opsbro with MIT License | 6 votes |
def signal_child(service, command): if command == 'stop': win32serviceutil.StopService(service) elif command == 'restart': win32serviceutil.RestartService(service) else: win32serviceutil.ControlService(service, control_codes[command])
Example #3
Source File: win32.py From cherrypy with BSD 3-Clause "New" or "Revised" License | 5 votes |
def signal_child(service, command): if command == 'stop': win32serviceutil.StopService(service) elif command == 'restart': win32serviceutil.RestartService(service) else: win32serviceutil.ControlService(service, control_codes[command])
Example #4
Source File: win32.py From bazarr with GNU General Public License v3.0 | 5 votes |
def signal_child(service, command): if command == 'stop': win32serviceutil.StopService(service) elif command == 'restart': win32serviceutil.RestartService(service) else: win32serviceutil.ControlService(service, control_codes[command])
Example #5
Source File: win32.py From Tautulli with GNU General Public License v3.0 | 5 votes |
def signal_child(service, command): if command == 'stop': win32serviceutil.StopService(service) elif command == 'restart': win32serviceutil.RestartService(service) else: win32serviceutil.ControlService(service, control_codes[command])
Example #6
Source File: win32.py From moviegrabber with GNU General Public License v3.0 | 5 votes |
def signal_child(service, command): if command == 'stop': win32serviceutil.StopService(service) elif command == 'restart': win32serviceutil.RestartService(service) else: win32serviceutil.ControlService(service, control_codes[command])