Check whether a fixlet has been applied

(imported topic written by SystemAdmin)

Hi,

I have to deploy a software package using BigFix to 100 workstations.

The deployment does not update the registry settings.However, it creates a new folder in the C: drive.

The fixlet will set as automated policy. How can I get a quick report on which computers have the new folder in C: drive and which computers does not?

Any ideas or suggestions will be greatly helpful for me.

Thanks in advance,

(imported comment written by BenKus)

Hey tmmet,

You have a couple options here:

  1. Make a property: The relevance will be

exists folder “C:\foldername”

  1. Put the relevance in the Fixlet: the relevance for the Fixlet to run will be

not exists folder “C:\foldername”

Option 1 gives you quick status on which computers have that folder, but option 2 is a better idea because it prevents the Fixlet from running on computers that already have the folder in place. You can do both if you want.

Ben