In Windows, is there a way to check for the existence of an environment variable for another process? Just need to check existence, not necessarily get value.
I need to do this from code.
|
In Windows, is there a way to check for the existence of an environment variable for another process? Just need to check existence, not necessarily get value. I need to do this from code. |
||||
|
|
|
If you know the virtual address at which the environment is stored, you can use To get that, you'll need to call |
|||
|
|
With a utility: You can use Process Explorer. Right click on the process, go to Properties... and there is an Environment tab which lists the environment variables for that process. With code: There doesn't appear to be a Win32 API call to do this directly, but apparently you get fiddle with the results of |
||||
|