Obtaining additional information with WMI

761 Views Asked by At

I have a question, if you can get the HD speed (RPM), if memory is DDR1, DDR2, DDR3, if the HD is SATA or IDE socket and chipset and motherboard ... If it is possible to phase it in Delphi

Thank You

1

There are 1 best solutions below

3
On

To check if the memory is DDR1, DDR2, DDR3 you can use the Win32_PhysicalMemory wmi class and the MemoryType property.

To check if the HDD is SATA or IDE you can use the Win32_DiskDrive, Win32_IDEController and Win32_SCSIController WMI classes.

for chipset info check the Win32_VideoController class

for Motherboard information use the Win32_BaseBoard class.

Now for access these WMI classes using Delphi code you can use the WDCC (WMI Delphi Code Creator) tool.