From 43c88946c45e2a7f8b4b2ac3e09cabb3180a9a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=B6ller?= Date: Sat, 15 May 2010 15:52:08 +0000 Subject: [PATCH] Added information about software environment to the report. --- Hardware/Computer.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Hardware/Computer.cs b/Hardware/Computer.cs index 143ffd7..48112c5 100644 --- a/Hardware/Computer.cs +++ b/Hardware/Computer.cs @@ -170,6 +170,15 @@ namespace OpenHardwareMonitor.Hardware { w.Write("Version: "); w.WriteLine(version.ToString()); 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)