Computer Model analysis

(imported topic written by BenUK77791)

Hi,

I’m trying to compile an analysis of particular laptop models in our environment.

I have the Property of:

(name of operating system = “WinXP”) and (computer name starts with “L”)

And the Relevance of:

(name of operating system = “WinXP”) and (computer name starts with “L”) and (string value of selects “Manufacturer from Win32_ComputerSystem” of wmi as lowercase contains “ibm”) and (string value of selects “Model from Win32_ComputerSystem” of wmi as lowercase contains “2525E2G”) or (string value of selects “Model from Win32_ComputerSystem” of wmi as lowercase contains “2525C3G”)

I know these models exist and have the BES client etc but I get no results.

Also if I do a simple analysis of all laptops:

(name of operating system = “WinXP”) and (computer name starts with “L”)

I get two results where there should be over a hundred?.

Any help appreciated.

Ben.

(imported comment written by BenKus)

Hey Ben,

This part of the relevance clause certainly won’t return any results:

(string value of selects “Model from Win32_ComputerSystem” of wmi as lowercase contains “2525E2G”) or (string value of selects “Model from Win32_ComputerSystem” of wmi as lowercase contains “2525C3G”)

You will need to either make the characters lowercase or remove the “as lowercase”…

Ben