EnvGet

Retrieves an environment variable.

OutputVar := EnvGet(EnvVarName)

Parameters

OutputVar

The name of the variable in which to store the string.

EnvVarName

The name of the environment variable to retrieve. For example: OutputVar := EnvGet("Path").

Remarks

If the specified environment variable is empty or does not exist, OutputVar is made blank.

The operating system limits each environment variable to 32 KB of text.

This function exists because normal script variables are not stored in the environment. This is because performance would be worse and also because the OS limits environment variables to 32 KB.

Related

EnvSet, environment variables, Run, RunWait

Example

OutputVar := EnvGet("LogonServer")