Create Automatic Group based on relevance of registry value

(imported topic written by gdelacruz91)

Hello,

I am trying to create an automatic group using relevance expression. Here’s what I have so far that is NOT working:

exists key “HKLM\System\CurrentControlSet\Control\TimeZoneInformation” whose (exists value “DaylightStart” of it as REG_BINARY != “00000300020002000000000000000000”)

Any help is appreciated. Thank you.

(imported comment written by NoahSalzman)

How about:

exists key “HKLM\System\CurrentControlSet\Control\TimeZoneInformation” whose ((value “DaylightStart” of it) as string != “00000300020002000000000000000000”) of Registry

(imported comment written by gdelacruz91)

Noah,

Thank you. That worked.