win32_add_service_env_var

Add a custom environment variables on service

Description

void win32_add_service_env_var(string $servicename, string $varname, string $value)

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

Parameters

servicename

The service name to add environment variable.

varname

The environment variable name.

value

The environment variable value.

Return Values

No value is returned.

Errors/Exceptions

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.

See Also

  • win32_get_service_env_vars
  • win32_remove_service_env_var