Retrieves an environment variable.
OutputVar := EnvGet(EnvVarName)
The name of the variable in which to store the string.
The name of the environment variable to retrieve. For example: OutputVar := EnvGet("Path")
.
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.
EnvSet, environment variables, Run, RunWait
OutputVar := EnvGet("LogonServer")