Dutch PHP Conference 2025 - Call For Papers

win32_remove_service_env_var

(No version information available, might only be in Git)

win32_remove_service_env_varRemove a custom environment variables on service

Açıklama

win32_remove_service_env_var(string $servicename, string $varname): void

Remove a custom environment variables varname on servicename service. This function work only for the local computer. Administrative privileges are required for this to succeed.

Bağımsız Değişkenler

servicename

The service name to remove environment variable.

varname

The environment variable name.

Dönen Değerler

Hiçbir değer dönmez.

Hatalar/İstisnalar

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

A ValueError is thrown if the value of varname 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