In a UWP application, developed in C#, how can I get information about the computer's specifications (CPU, GPU, RAM and HDD / SSD)?
For example:
- CPU: Intel Core i7 xxxx
- RAM: 8GB
- GPU: Nvidia GeForce xxx
In a UWP application, developed in C#, how can I get information about the computer's specifications (CPU, GPU, RAM and HDD / SSD)?
For example:
Unfortunately, there is currently no public API allowing you to gather the hardware information of the device.
For CPU you can get it usage using SystemCpuUsage
class.
For information about memory usage try MemoryManager
.
Finally, you might be able to get some GPU info via DirectX.