vote up 4 vote down star

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?

flag

7 Answers

vote up 7 vote down

Your problem seems to be something like we've experienced and can be very tricky to figure out what's going on.

What happens is when environment variables are added/removed/changed, the services environment does not recognize this until it "restarts". This is because these environment variables are stored in the registry and this registry is read only once by the service environment... at system startup.

This means that in order for a service to pickup a change in environment variables, a system restart needs to occur.

Check out the Microsoft KB on this.

link|flag
vote up 5 vote down

The service is probably running under a different account and is not getting the same environment variables.

link|flag
I guess I should have clarified this, but TIP_HOME is a system variable. I thought system variables were NOT user-specific? – Brian Nov 20 '08 at 16:22
Well, as a test you can add debuging code to your service to have it iterate through all the environment vars it sees at startup and output those to a temp file. – EBGreen Nov 20 '08 at 16:26
vote up 1 vote down

Are you running the service under the Local System account?

Have you restarted the machine after adding the TIP_HOME variable?

Services running under Local System get started from the services.exe service, which only reads its environment when it starts up: http://support.microsoft.com/kb/821761

link|flag
Yes, the machine has been restarted since the system variable was set. I am creating and launching the service under the Administrator account. – Brian Nov 20 '08 at 17:33
vote up 0 vote down

Are you aware of system and user environment variables? A Windows Service, by default, runs under the system account.

link|flag
Yes, the variable I am looking for is a system variable. See the answer I posted below. – Brian Nov 20 '08 at 16:41
vote up 0 vote down

I modified that line of code to this:

string t = System.Environment.GetEnvironmentVariable("TIP_HOME", EnvironmentVariableTarget.Machine);

I can look through my registry and see that TIP_HOME is set.

This is from MSDN: Machine: The environment variable is stored or retrieved from the HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment key in the Windows operating system registry.

User variables are stored elsewhere in the registry..

The string is still showing up empty when I run the service with this change, though.

link|flag
Did you try enumerating the env vars as I suggested? – EBGreen Nov 20 '08 at 16:45
I'm trying to figure out how.. i am very new to C#, and just need it for this one tiny project. – Brian Nov 20 '08 at 16:50
vote up 0 vote down

Okay, I don't quite understand this, but here is what I've found..

In the same service, I first try what I described earlier and the string returns empty.

Then, if I enumerate through each of the system-level environment variables, it finds the variable I am looking for just fine.

Here is a code snippet, slightly modified from some sample code found on MSDN:

foreach(DictionaryEntry de in Environment.GetEnvironmentVariables(tgt))
{
    key   = (string)de.Key;
    value = (string)de.Value;

    if(key.Equals("TIP_HOME") && value != null)
        log.WriteEntry("TIP_HOME="+value, EventLogEntryType.Information);
}
link|flag
vote up 0 vote down

try this code string getsyspath = System.Environment.GetEnvironmentVariable("TIP_HOME",EnvironmentVariableTarget.Machine);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.