I would start by looking at the raw data to see what you get:
selects "* from Win32_SCSIController" of WMIs
or:
selects "* from Win32_DiskDrive" of wmis
It sounds like what you really want to get is the settings in the Dell BIOS. You generally want to do that with Dell Command Monitor. You will need to install Dell Command Monitor, then it will let you query Dell BIOS specific settings using WMI.
Please let me know how to use this in relevance query.
selects â* from Win32_SCSIControllerâ of WMIs
or:
selects â* from Win32_DiskDriveâ of wmis
Q&A trial:-1:
q: (string values of selects ("* from Win32_SCSIController") whose(name of it = âStandard AHCI 1.0 Serial ATA Controllerâ) of WMI)
T: 9.743 ms
Got no answer for it.
Reading about the Dell Commands Monitor it looks like i need to install it first on a test PC. (Am I correct?)
q: tuple string item ( (it - 1) of integer (string value of selects âCurrentValue from DCIM_BIOSEnumeration where AttributeName=âEmbedded SATA Controllerââ of wmi âroot\dcim\sysmanâ) ) of concatenation ", " of (string values of selects âPossibleValuesDescription from DCIM_BIOSEnumeration where AttributeName=âEmbedded SATA Controllerââ of wmi âroot\dcim\sysmanâ) | ERROR "UNKNOWN"
E: User-defined error: UNKNOWN
How about being less specific, start of by getting all the names to see what the existing values are, eg
Q: string values of selects "Name from Win32_SCSIController" of wmis
A: Microsoft Storage Spaces Controller
A: BayHubTech/O2Micro Integrated MMC/SD controller
A: Intel Chipset SATA RAID Controller
T: 14.282 ms
I: plural string
Then get more specific depending on the result from the frist step
Q: string values of selects "Name from Win32_SCSIController where Name='Intel Chipset SATA RAID Controller'" of wmis
A: Intel Chipset SATA RAID Controller
T: 14.268 ms
I: plural string
I am late in reply but i had tried both the queries on my system but get a blank reply. I mean no answer and no error. I had launched fixlet debugger with normal user and in elevated controls.
Query:-
q: string values of selects âName from Win32_SCSIControllerâ of wmis
T: 331.686 ms
Relevance can only return data that exists in WMI. You probably want to use something like WMI Explorer or wbemtest.exe to look into WMI on your machine and see what does exists. Those commands ran on my Dell machine in the FixletDebugger as an elevated admin and the results are as you see in my earlier reply so I canât really comment on why your machine doesnât return any data.