Property output clean-up

(imported topic written by EJRhees)

We have a property to display members of the local Administrators group. I would like to have the output remove a short list of member names that are present on all of our client computers.

The property relevance that we use:

If ((it contains “Win” AND it != “Win98” AND it != “WinME”) of name of operating system AND version of regapp “BESClient.exe” >= “6” AND exists local group “Administrators”) then (members of local group “Administrators” as string) else “Unsupported Configuration”

An example of one of the member groups I would like to remove from the output:

\PC Helpdesk

Thank you

(imported comment written by BenKus)

Try:

If ((it contains “Win” AND it != “Win98” AND it != “WinME”) of name of operating system AND version of regapp “BESClient.exe” >= “6” AND exists local group “Administrators”) then (members whose (it as string as lowercase does not contain “pc helpdesk” AND it as string as lowercase does not contain “guest” ) of local group “Administrators” as string) else “Unsupported Configuration”

Ben

(imported comment written by EJRhees)

Thank you very much. That worked perfectly.

Once again you’ve made me look good to the customer.

Thanks again