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
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
Copyright © 2021 Jogjafile Inc.
To check if the memory is DDR1, DDR2, DDR3 you can use the
Win32_PhysicalMemory
wmi class and theMemoryType
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
classfor 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.