Simple registry relevance not working

(imported topic written by murtasma91)

I created a reg key that will be used to help track the state of some custom support levels we are developing. The key is located under HKLM\Software\BigFix and is named SupportLevel

When I evaluate the following relevance on my workstations it returns Error: Singular expression referes to nonexistent object.

value “SupportLevel” of key “HKLM\SOFTWARE\BigFix” of registry

(imported comment written by SystemAdmin)

I stuck a string value of “SupportLevel” under my Bigfix key and it worked fine. Start from scratch and see that you are looking where you think you are looking.

exists key “HKLM\Software\Bigfix” of registry

(if it comes back as false, try swapping “registry” with “x32 registry”, “x64 registry”, etc.)

Once you have a true result, try the following (which will show you items that are below that key):

names of values of key “HKLM\Software\Bigfix” of registry

-Jim

(imported comment written by murtasma91)

exists key “HKLM\Software\Bigfix” of registry

Came back true

names of values of key “HKLM\Software\Bigfix” of registry

returned nothing but from the attached screenshot you can see SupportLevel is there.

Very strange

(imported comment written by BenKus)

And what does this return?

q: names of values of keys “HKLM\Software\Bigfix” of (registry; x32 registry; x64 registry)

Ben