Wildcard Automatic Computer Groups

I’m trying to find all endpoints in BigFix that start with REG00 and end with -1

I’ve created an automatic group with the following relevance and it doesn’t appear to work. Why?

exists (computer name) whose (it as string as lowercase contains “(it contains %22REG00%22 AND (it ends with %22-1%22)”)

You would need to use the actual quotes as the computer name inspector is expecting a string.

computer name whose (it starts with "REG00" AND it ends with "-1")

That’s not working either.

You probably need to add exists

exists computer name whose (it as uppercase starts with "REG00" AND it ends with "-1")

Thanks, that appears to work!

1 Like