-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystemInfo.cs
More file actions
214 lines (187 loc) · 7.05 KB
/
Copy pathSystemInfo.cs
File metadata and controls
214 lines (187 loc) · 7.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.CompilerServices;
using System.Net.NetworkInformation;
namespace SentinelSyncV1
{
public class SystemInfo
{
public static object System { get; internal set; }
// getting OS informations
public string GetOsInfos(string param)
{
ManagementObjectSearcher mos = new ManagementObjectSearcher("select * from Win32_OperatingSystem");
// mo = management object
foreach (ManagementObject? mo in mos.Get())
{
switch (param)
{
case "os":
return mo["Caption"]?.ToString() ?? "";
// Arch = architecture
case "arch":
return mo["OSArchitecture"]?.ToString() ?? "";
// Osv = version du système d'exploitation
case "osv":
return mo["CSDVersion"]?.ToString() ?? "";
}
}
return "";
}
// getting CPU infos
public string GetCpuInfos()
{
RegistryKey processor_name = Registry.LocalMachine.OpenSubKey(
@"Hardware\Description\System\CentralProcessor\0",
RegistryKeyPermissionCheck.ReadSubTree
);
if (processor_name != null)
{
return processor_name.GetValue("ProcessorNameString").ToString();
}
return "";
}
// getting GPU infos
public void GetGpuInfos()
{
using (var searcher = new ManagementObjectSearcher("select * from Win32_Videocontroller"))
{
foreach (ManagementObject? obj in searcher.Get())
{
Console.WriteLine("Name - " + obj["Name"]);
Console.WriteLine("DeviceID - " + obj["DeviceID"]);
Console.WriteLine("AdapterRAM - " + obj["AdapterRAM"]);
Console.WriteLine("AdapterDACType - " + obj["AdapterDACType"]);
Console.WriteLine("Monochrome - " + obj["Monochrome"]);
Console.WriteLine("InstalledDisplayDrivers - " + obj["InstalledDisplayDrivers"]);
Console.WriteLine("DriverVersion - " + obj["DriverVersion"]);
Console.WriteLine("VideoProcessor - " + obj["VideoProcessor"]);
Console.WriteLine("VideoArchitecture - " + obj["VideoArchitecture"]);
Console.WriteLine("VideoMemoryType - " + obj["VideoMemoryType"]);
}
}
}
public void GetDrivesInfos()
{
DriveInfo[] allDrives = DriveInfo.GetDrives();
List<Disk> disks = new List<Disk>();
foreach (DriveInfo info in allDrives)
{
disks.Add(new Disk(info.Name, info.DriveFormat, FormatBytes(info.TotalSize), FormatBytes(info.AvailableFreeSpace)));
}
foreach(var d in disks)
{
Console.WriteLine("Disk " + d.name + " ||| drive format : " + d.format + " ||| total size : " + d.totalSpace + " ||| avaible space : " + d.freeSpace);
}
}
public string FormatBytes(long bytes)
{
string[] suffix = { "B", "KB", "MB", "GB", "TB" };
int i;
double dblSByte = bytes;
for (i = 0; i < suffix.Length && bytes >= 1024; i++, bytes /= 1024)
{
dblSByte = bytes / 1024.0;
}
return String.Format("{0:0.##} {1}", dblSByte, suffix[i]);
}
public void RefreshNetworkInfos()
{
if (!NetworkInterface.GetIsNetworkAvailable())
{
return;
}
NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();
foreach (NetworkInterface ni in interfaces)
{
if (ni.GetIPv4Statistics().BytesSent > 0 )
{
Console.WriteLine("bytes sent : " + ni.GetIPv4Statistics().BytesSent / 1000 + " KB");
}
if (ni.GetIPv4Statistics().BytesReceived > 0)
{
Console.WriteLine("bytes received : " + ni.GetIPv4Statistics().BytesReceived / 1000 + " KB");
}
}
}
#region specificals functions about RAM
[DllImport("kernel32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GlobalMemoryStatusEx(ref MEMORY_INFO mi);
[StructLayout(LayoutKind.Sequential)]
public struct MEMORY_INFO
{
public uint dwLength;
public uint dwMemoryLoad;
public ulong ullTotalPhys;
public ulong ullAvailPhys;
public ulong ullTotalPageFile;
public ulong ullAvailPageFile;
public ulong ullTotalVirtual;
public ulong ullAvailVirtual;
public ulong ullAvailExtendedVirtual;
}
public static string FormatSize(double size)
{
double d = (double)size;
int i = 0;
while ((d > 1024) && (i < 5))
{
d /= 1024;
i++;
}
string[] unit = { "B", "KB", "MB", "GB", "TB" };
return (string.Format("{0} {1}", Math.Round(d, 2), unit[i]));
}
public static MEMORY_INFO GetMemoryStatus()
{
MEMORY_INFO mi = new MEMORY_INFO();
mi.dwLength = (uint)Marshal.SizeOf(mi);
GlobalMemoryStatusEx(ref mi);
return mi;
}
public static ulong GetAvailPhys()
{
MEMORY_INFO mi = GetMemoryStatus();
return mi.ullAvailPhys;
}
// get used memory
public static ulong GetUsedPhys()
{
MEMORY_INFO mi = GetMemoryStatus();
return (mi.ullTotalPhys - mi.ullAvailPhys);
}
// get total physical memory
public static ulong GetTotalPhys()
{
MEMORY_INFO mi = GetMemoryStatus();
return mi.ullTotalPhys;
}
#endregion
}
public class Disk
{
public string name;
public string format;
public string totalSpace;
public string freeSpace;
public Disk(string n, string f, string t, string l)
{
name = n;
format = f;
totalSpace = t;
freeSpace = l;
}
public override string ToString()
{
return name + " (" + format + ") " + freeSpace + " free / " + totalSpace;
}
}
}