Hi Guys, after a bit of playing around and hunting around, I found that kix can inject registry files directly, so my script now looks like:

IF NOT KeyExist("HKCU\Software\Work\Config\IncludeSubjectLabel")
$rc = WriteValue("HKCU\Software\Work\Config\", "IncludeSubjectLabel", "0", "REG_DWORD")
$rc = WriteValue("HKCU\Software\Work\Config\", "IncludeSubjectLabelOnBrowse", "0", "REG_DWORD")
ENDIF

I do have a question, for some reason, the script is executing even if the key exists.

For example, if I change this key to have a value of "1", then relogon, it changes to "0".... So its changing the registry regardless of the IF NOT.

Is there something I'm missing?