LSI MegaRAID controller WMI help

I’m needing help trying to query this through relevance.

I’m using a program called WMI Explorer to find the query I want:

SELECT HardDriveWriteCachePolicy FROM LSIESG_StoragePool WHERE InstanceID=‘500605B006558240_Storage Pool_ServeRAID M1015 SAS/SATA Controller:500605B0065582400:Pool:0’

…but I am really struggling to translate this to relevance language.

Can anyone point me in the right direction? Thank you.

@eboth225, here is an example.

selects "HardDriveWriteCachePolicy from LSIESG_StoragePool where InstanceID='500605B006558240_Storage Pool_ServeRAID M1015 SAS/SATA Controller:500605B0065582400:Pool:0'" of wmi "root\cimv2"
  • Note that Windows and WMI are not case sensitive.
  • Double check the Namespace of the class. The current example shows “root\cimv2” and you might have to change that.

Yes!!

I had to change the class to:

of wmi “root\LSI_MR_1_3_0”

Thank you very much leewei.