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
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).
Win32_PhysicalMemory
TotalWidth
DataWidth
Source: https://habr.com/ru/post/1397031/More articles:How to change the color of each marker point of the element? - jqueryAndroid: make a folder on external memory private or secure - androidUsing QListView with a model defined in Pyside - pythonHow to search for an item and get its index in the Observable Collection - c #why the property doc function does not display help information when it is called using help (instance.attribute) - pythonSelect an object from a joined table using JPA-APIs - javaSingle letter mismatch - javaHow to read n lines over a matching line in perl? - scriptingHow to write the contents of a System.Collections.Specialized.StringCollection file to a file? - c #How to continue execution of a java program after an Exception exception? - javaAll Articles