22.17. Win32::Service
The Win32::Service module provides a
service control interface. It allows you to start, pause, resume, and
stop Windows NT system services from Perl scripts.
The following functions are exported by this module. The
host argument in each function gives the
hostname of the machine a service is running (or will run) on. If you
supply a null string ("), the
local machine will be assumed.
Returns a list of services on
GetServices (host, \%hash)
host to the hash referenced by
hash.
Returns the status of
GetStatus (host, service, \%status)
service as a hash referenced by
status. The keys for this hash are:
ServiceType
CurrentState
ControlsAccepted
Win32ExitCode
ServiceSpecificExitCode
CheckPoint
WaitHint
Pauses the named
PauseService (host, service)
service on machine
host (only if the service is able to
pause).
Resumes a paused
ResumeService (host, service)
service on
host.
Starts the named
StartService (host, service)
service on the machine
host. The specified service must be
registered with the Service Control Manager.
Stops the named
StopService (host, service)
service on machine
host.