Jose Eduardo
Jose Eduardo

Reputation: 487

Obtaining additional information with WMI

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

Upvotes: 2

Views: 766

Answers (1)

RRUZ
RRUZ

Reputation: 136391

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.

Upvotes: 7

Related Questions