C # How to check if installed physical memory is set to either ECC or non ECC?

I am trying to figure out how to check if the installed memory (RAM) is ECC without ECC I need to do this using C # using WMI classes.

Do you have any idea?

thnx in advance

+4
source share
1 answer

You can query WMI Win32_PhysicalMemory and check if TotalWidth (the number of bits, including any control bits) is greater than the DataWidth (bit, excluding the control bits).

+3
source

Source: https://habr.com/ru/post/1397031/


All Articles