You can get your machine
information by using the System.Environment class.
static void PrintMachineInformation()
{
Console.WriteLine("Machine Name" + System.Environment.MachineName);
Console.WriteLine("UserName" + System.Environment.UserName);
Console.WriteLine("Tick Count" + System.Environment.TickCount);
// Check out System.Envirnment class for more properties
}
powered by IMHO