diff -r 407f98562c3b -r 4ca4621553aa Hardware/Computer.cs --- a/Hardware/Computer.cs Sat May 15 14:16:00 2010 +0000 +++ b/Hardware/Computer.cs Sat May 15 15:52:08 2010 +0000 @@ -171,6 +171,15 @@ w.WriteLine(); NewSection(w); + w.Write("Common Language Runtime: "); + w.WriteLine(Environment.Version.ToString()); + w.Write("Operating System: "); + w.WriteLine(Environment.OSVersion.ToString()); + w.Write("Process Type: "); + w.WriteLine(IntPtr.Size == 4 ? "32-Bit" : "64-Bit"); + w.WriteLine(); + + NewSection(w); foreach (IGroup group in groups) { foreach (IHardware hardware in group.Hardware) ReportHardwareTree(hardware, w, "");