System Requirements

(imported topic written by SystemAdmin)

I editting some relevance so that a certain application is only relevent to specific computers. This is my relevance. My problem is I get a false when I know it should be true. The issue is with when I check the CPU.

(name of operating system = “Win2000” OR name of operating system = “WinXP” OR name of operating system = “WinVista”) AND TRUE AND (true and exists true whose (if true then (free space of drive of system folder / 1000 / 1000 > 600) else false)) AND (true and exists true whose (if true then (Size of ram / (1024*1024) > 256) else false)) AND (true and exists true whose (if true then (speed of processor /Mhz > 400) else false))

(imported comment written by NoahSalzman)

If you are trying to ensure that the processor is greater than 400 MHz then use:

(speed of main processor > 400 * MHz)

(imported comment written by BenKus)

Hey mjohns,

You might try to use a number slightly less than your target because the mhz can vary a little bit… for instance if you support 400 mhz and up, you might say:

speed of main processor > 375 * mhz

Ben

(imported comment written by SystemAdmin)

Thanks guys that did it