How can I read a user specific environment variable? I know how to get a system wide one, like
Environment.GetEnvironmentVariable(\"SOMETHING\");
It's the same method, just set the second parameter to be User as:
User
System.Environment.GetEnvironmentVariable("varName", EnvironmentVariableTarget.User);