Need help with relevance

(imported topic written by Boomer91)

I have a fixlet that runs a MSI install package and the relevance was written to check for window 7, 64 bit operating system and the non existence of a file. It runs fine but has still has workstations showing it relevant after being fixed. What is wrong with my relevance? Here is waht I have:

((operating system as string as lowercase contains “win7”) and (x64 of operating system)) and ((not (exists file “c:\Windows\System32\MSGinaExtension.dll”)))

Thanks in advance.

(imported comment written by Bill.Ehardt)

Hrm… for the replace piece try adding x64 file?

not exists x64 file “c:\Windows\System32\MSGinaExtension.dll”

(imported comment written by jeremylam)

You may also want to switch to the “system x64 folder” inspector since the Windows install location can vary.

(imported comment written by Boomer91)

That worked, thank you very much.