suche nach in der

win32_set_service_status> <win32_pause_service
Last updated: Fri, 25 May 2012

view this page in

win32_query_service_status

(PECL win32service SVN)

win32_query_service_statusQueries the status of a service

Beschreibung

mixed win32_query_service_status ( string $servicename [, string $machine ] )

Queries the current status for a service, returning an array of information.

Parameter-Liste

servicename

The short name of the service.

machine

The optional machine name. If omitted, the local machine will be used.

Rückgabewerte

Returns an array consisting of the following information on success oder FALSE, wenn es ein Problem mit den Parametern gab oder einen Win32-Fehlercode im Fehlerfall.

ServiceType

The dwServiceType. See Win32Service Service Type Bitmasks.

CurrentState

The dwCurrentState. See Win32Service Service Status Constants.

ControlsAccepted

Which service controls are accepted by the service. See Win32Service Service Control Message Accepted Bitmasks.

Win32ExitCode

If the service exited, the return code from the process.

ServiceSpecificExitCode

If the service exited with an error condition, the service specific code that is logged in the event log is visible here.

CheckPoint

If the service is shutting down, holds the current check point number. This is used by the SCM as a kind of heart-beat to detect a wedged service process. The value of the check point is best interpreted in conjunction with the WaitHint value.

WaitHint

If the service is shutting down it will set WaitHint to a checkpoint value that will indicate 100% completion. This can be used to implement a progress indicator.

ProcessId

The Windows process identifier. If 0, the process is not running.

ServiceFlags

The dwServiceFlags. See Win32Service Service Service Flag Constants.



add a note add a note User Contributed Notes
win32_query_service_status
mnemotronic at netscape dot net
25-Oct-2006 04:30
If the service specified is non-existant, "win32_query_service_status" seems to return an integer, not  the expected FALSE value:

$svcStatus=win32_query_service_status ('_bogons_');
echo $svcStatus ;

prints 1060

-- This is for xampp PHP; v5.1.6

win32_set_service_status> <win32_pause_service
Last updated: Fri, 25 May 2012