Dutch PHP Conference 2025 - Call For Papers

win32_add_right_access_service

(PECL win32service >=1.1.0)

win32_add_right_access_serviceAdd rights access for an username to the service

Açıklama

win32_add_right_access_service(
    string $servicename,
    string $username,
    int $right,
    string $machine = null
): void

Add the rights access for username on servicename service. Administrative privileges are required for this to succeed.

Bağımsız Değişkenler

servicename

The service name to add rights access.

username

Read the rights access for username.

right

The rights allowed for username. The service rights constants can be used to define this value.

machine

The optional machine name on which you want to create a service. If omitted, it will use the local machine.

Dönen Değerler

Return a Win32Service\RightInfo object.

Hatalar/İstisnalar

A ValueError is thrown if the value of service parameter is empty.

A ValueError is thrown if the value of username parameter is empty.

A Win32ServiceException is thrown on error.

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top