SSD information

(imported topic written by homer91)

trying to determine who has SSD’s in their system and whether they need a firmware upgrade.

I have got the SSD sorted:

(it as lowercase starts with “intel ssd” ) of string values of selects “Model from Win32_DiskDrive” of wmi

but how do I get firmware version?

(imported comment written by BenKus)

Try one of these:

q: (string value of property “Model” of it, string value of property “FirmwareRevision” of it) of select objects “Model, FirmwareRevision from Win32_DiskDrive” of wmi
A: WDC WD2500BJKT-75F4T0, 11.0
A: SanDisk U3 Cruzer Micro USB Device, 8.02

q: (string value of property “Model” of it, string value of property “FirmwareRevision” of it) of select objects “Model, FirmwareRevision from Win32_DiskDrive” whose (string value of property “Model” of it as lowercase contains “intel ssd”) of wmi

Ben

(imported comment written by homer91)

excellent, thanks both seem to work