EnvGet [v1.0.43.08+]

환경 변수를 열람합니다.

EnvGet, OutputVar, EnvVarName

매개변수

OutputVar

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

EnvVarName

열람할 환경 변수의 이름. 예를 들어: EnvGet, OutputVar, Path.

논평

지정된 환경 변수가 비어 있거나 존재하지 않으면, OutputVar 비워집니다.

운영 체제는 환경 변수의 길이를 32 KB의 텍스트로 제한합니다.

EnvSet, #NoEnv, 환경 변수, EnvUpdate, SetEnv, Run, RunWait

예제

Retrieves an environment variable and stores its value in OutputVar.

EnvGet, OutputVar, LogonServer

Retrieves and reports the path of the "Program Files" directory. See RegRead example #2 for an alternative method.

EnvGet, OutputVar, % A_Is64bitOS ? "ProgramW6432" : "ProgramFiles"
MsgBox, Program files are in: %OutputVar%

Retrieves and reports the path of the current user's Local AppData directory.

EnvGet, LocalAppData, LocalAppData
MsgBox, %A_UserName%'s Local directory is located at: %LocalAppData%