Relevancy question

(imported topic written by Boomer91)

I am new to Bigfix and still learning and am trying to remove a registry key and it is failing for some reason.

The action script is simply: regdelete "

http://HKEY_CURRENT_USER\Sofware\Bigfix Inc.

" “testString”

Here is my relevancy:

(operating system as string as lowercase contains “xp”) and (exists key “Software\Bigfix Inc.” of key “HKEY_CURRENT_USER” of registry) OR((exists key “Software\Bigfix Inc.” of key “HKEY_CURRENT_USER” of registry) AND (exists value “testString” of key “Software\Bigfix Inc.” of key “HKEY_CURRENT_USER” of registry))

What am I missing?

Boomer

(imported comment written by BenKus)

Hi Boomer,

The issue is that you are deleting the value for the current user of the agent, which is the SYSTEM account… But you can accomplish your regdelete fairly easily by running the Windows Registry Wizard. Make sure to click the box on the first page to run as the local user and then choose to delete the value.

Ben

(imported comment written by Boomer91)

Thanks Ben.