win32_start_service

(PECL win32service SVN)

win32_start_serviceЗапускает службу

Описание

int win32_start_service ( string $servicename [, string $machine ] )

Производит попытку запуска обозначенной службы. Обычно требует административных привилегий.

Список параметров

servicename

Короткое название службы.

machine

Необязательное имя машины. Если не указано, используется на локальной машине.

Возвращаемые значения

Возвращает WIN32_NO_ERROR в случае успешного завершения , FALSE если была обнаружена проблема с параметрами или код ошибки Win32 при неудачном завершении работы.

Смотрите также

Коментарии

If you get a 1053 error when trying to launch your service, check your service script for errors!

E.g. if you have some syntax errors, the service will attempt to run the php interpreter, but the script won't answer to the service manager with
win32_start_service_ctrl_dispatcher('servicename').

Don't think it is because the call comes to late. It just never came, because there were errors. Test your services with CLI php and then try to run the service.
2007-10-16 09:40:12
http://php5.kiev.ua/manual/ru/function.win32-start-service.html
[This] can solve 1053 issue.
You just need to add " if you have spaces in your path...

<?php
win32_create_service
(array(
       
'service' => 'COMPLAINTS',                 # the name of your service
       
'display' => 'Receive email complaints and direct them to the website'# description
       
'params' => '"' __FILE__ '"' ' run'# path to the script and parameters
   
));
?>
2010-03-18 07:23:12
http://php5.kiev.ua/manual/ru/function.win32-start-service.html

    Поддержать сайт на родительском проекте КГБ