Re: Shelless SSH (General questions)
Peter,
Here is example how to read environment variable and environment variable values in C#
[code]System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables();
foreach (System.Collections.DictionaryEntry envVar in envVars)
{
Console.WriteLine(envVar.Key + = + envVar.Value);
}[/code]Can you try that and let us know how it goes?
Drazen