Sets the contents of the specified environment variable for the current process.
Syntax
BOOL WINAPI SetEnvironmentVariable(
__in LPCTSTR lpName,
__in_opt LPCTSTR lpValue
);
Parameters
- lpName [in]
-
The name of the environment variable. The operating system creates the environment variable if it does not exist and lpValue is not NULL.
- lpValue [in, optional]
-
The contents of the environment variable. The total size of the environment block for a process may not exceed 5,120 characters. For more information, see
Environment Variables.
Windows Server 2003 and Windows XP/2000: The total size of the environment block for a process may not exceed 32,767 characters.
If this parameter is NULL, the variable is deleted from the current process's environment.
Return Value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call
GetLastError.
Remarks
This function has no effect on the system environment variables or the environment variables of other processes.
Examples
For an example, see
Changing Environment Variables.
Requirements
| Minimum supported client | Windows 2000 Professional |
| Minimum supported server | Windows 2000 Server |
| Header | Winbase.h (include Windows.h) |
| Library | Kernel32.lib |
| DLL | Kernel32.dll |
| Unicode and ANSI names | SetEnvironmentVariableW (Unicode) and SetEnvironmentVariableA (ANSI) |
See Also
- Environment Variables
- GetEnvironmentVariable
Send comments about this topic to Microsoft
Build date: 11/19/2009