Re: Shelless SSH (General questions)
Peter,
Are you receiving ThinConnectedFrom variable and value when you list environment variables using my code?If you do can you show me maybe that line?
Drazen
By using the following code I can see all the variables listed in a command prompt including the ThinConnectedFrom=172.21.72.57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables();
foreach (System.Collections.DictionaryEntry envVar in envVars)
{
Console.WriteLine(envVar.Key + = + envVar.Value);
Console.ReadLine();
}
}
}
}
Complete thread:
- Shelless SSH - schenkp, 2009-07-06, 21:06
- Re: Shelless SSH - wodSupport, 2009-07-06, 21:10
- Re: Shelless SSH - schenkp, 2009-07-06, 21:25
- Re: Shelless SSH - wodDamir, 2009-07-06, 21:41
- Re: Shelless SSH - schenkp, 2009-07-06, 21:44
- Re: Shelless SSH - wodDamir, 2009-07-06, 21:50
- Re: Shelless SSH - schenkp, 2009-07-06, 21:55
- Re: Shelless SSH - wodDamir, 2009-07-06, 22:32
- Re: Shelless SSH - schenkp, 2009-07-07, 16:15
- Re: Shelless SSH - woddrazen, 2009-07-07, 16:31
- Re: Shelless SSH - schenkp, 2009-07-07, 17:00
- Re: Shelless SSH - woddrazen, 2009-07-07, 17:14
- Re: Shelless SSH - schenkp, 2009-07-07, 18:23
- Re: Shelless SSH - woddrazen, 2009-07-07, 18:27
- Re: Shelless SSH - schenkp, 2009-07-07, 19:38
- Re: Shelless SSH - woddrazen, 2009-07-07, 19:58
- Re: Shelless SSH - schenkp, 2009-07-07, 20:15
- Re: Shelless SSH - woddrazen, 2009-07-07, 20:29
- Re: Shelless SSH - schenkp, 2009-07-07, 20:46
- Re: Shelless SSH - woddrazen, 2009-07-07, 21:20
- Re: Shelless SSH - schenkp, 2009-07-08, 13:33
- Re: Shelless SSH - wodDamir, 2009-07-08, 13:37
- Re: Shelless SSH - schenkp, 2009-07-08, 13:57
- Re: Shelless SSH - wodDamir, 2009-07-08, 14:03
- Re: Shelless SSH - schenkp, 2009-07-08, 14:43
- Re: Shelless SSH - wodDamir, 2009-07-08, 14:57
- Re: Shelless SSH - schenkp, 2009-07-08, 15:15
- Re: Shelless SSH - wodDamir, 2009-07-08, 14:57
- Re: Shelless SSH - schenkp, 2009-07-08, 14:43
- Re: Shelless SSH - wodDamir, 2009-07-08, 14:03
- Re: Shelless SSH - schenkp, 2009-07-08, 13:57
- Re: Shelless SSH - wodDamir, 2009-07-08, 13:37
- Re: Shelless SSH - schenkp, 2009-07-08, 13:33
- Re: Shelless SSH - woddrazen, 2009-07-07, 21:20
- Re: Shelless SSH - schenkp, 2009-07-07, 20:46
- Re: Shelless SSH - woddrazen, 2009-07-07, 20:29
- Re: Shelless SSH - schenkp, 2009-07-07, 20:15
- Re: Shelless SSH - woddrazen, 2009-07-07, 19:58
- Re: Shelless SSH - schenkp, 2009-07-07, 19:38
- Re: Shelless SSH - woddrazen, 2009-07-07, 18:27
- Re: Shelless SSH - schenkp, 2009-07-07, 18:23
- Re: Shelless SSH - woddrazen, 2009-07-07, 17:14
- Re: Shelless SSH - schenkp, 2009-07-07, 17:00
- Re: Shelless SSH - woddrazen, 2009-07-07, 16:31
- Re: Shelless SSH - schenkp, 2009-07-07, 16:15
- Re: Shelless SSH - wodDamir, 2009-07-06, 22:32
- Re: Shelless SSH - schenkp, 2009-07-06, 21:55
- Re: Shelless SSH - wodDamir, 2009-07-06, 21:50
- Re: Shelless SSH - schenkp, 2009-07-06, 21:44
- Re: Shelless SSH - wodDamir, 2009-07-06, 21:41
- Re: Shelless SSH - schenkp, 2009-07-06, 21:25
- Re: Shelless SSH - wodSupport, 2009-07-06, 21:10