I am attempting to write a windows service in C#. I need to find the path to a certain file, which is stored in an environment variable. In a regular C# console application, I can achieve that with the following line:
string t = System.Environment.GetEnvironmentVariable("TIP_HOME");
If I write that to the console I see that it was successful.
Now, if I try that same code in a Windows Service, the string t is empty.
Any idea why?
