Is there a way to set the global windows path environment variable programatically (C++)?
As far as I can see, putenv sets it only for the current application.
Changing directly in the registry (HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment) is also an option though I would prefer API methods if there are?
|
2
|
|
|||
|
|
|
|
MSDN Says:
From here |
||
|
|
|
|
As was pointed out earlier, to change the PATH at the machine level just change this registry entry:
But you can also set the PATH at the user level by changing this registry entry:
And you can also set the PATH at the application level by adding the application\Path details to this registry entry:
|
||
|
|
|
|
Yes You are correct. You also need to effect these settings without logging off Send Message of borad casting to all windows SETTINGCHANGE for the parameter (LPARAM) "Environment" with SMTO_ABORTIFHUNG for some milliseconds(5000) using SendMessageTimeout API. This is what setX.exe provided with resource Kit does. |
||
|
|
|
|
Many information for you here : www.samiam.org/alt.hackers.1995/3q0fcv$3d2@skat.usc.edu.html |
|||
|
|
|
If you want to do it through the registry, you might want to look at the source code of this program. Microsoft also provides a small command line utility called setx with its resource toolkits, which will let you do this. By the way, the regular set command just lets you define local environment variables I think. |
||
|
|
|
|
There is no API - changing the registry is the way to do it. The changed value will be used for processes starting after the change was made. Also: Notice that running applications must actively process the settings changed message and many (most?) do not do so. |
|||
|
|
