Re: Shelless SSH - WeOnlyDo Discussion board

Re: Shelless SSH (General questions)

by woddrazen, Tuesday, July 07, 2009, 19:58 (5617 days ago) @ schenkp

Peter,


Can you please try something like this:[code]
String hostname_value = ;

System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables();
foreach (System.Collections.DictionaryEntry envVar in envVars)
{
if (envVar.Key.ToString() == ThinConnectedFrom )
{
hostname_value = envVar.Value.ToString();
}
}

MessageBox.Show(hostname_value);

WeOnlyDo.Client.SSH ssh1 = new WeOnlyDo.Client.SSH();
ssh1.Hostname = hostname_value;
...[/code]
Drazen


Complete thread: