Transform Multiple String Values

Greetings—
I am using the following relevance:

(names of it, values of it) of keys of key "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers" of native registry

Which returns a nice list:
AES 128/128, 4294967295
AES 256/256, 4294967295
DES 56/56, 0
RC2 128/128, 0
RC2 40/128, 0
RC2 56/128, 0
RC4 128/128, 0

However, now I would like to “prettify it” by applying the following logic:
if(value “Enabled” of it equals 0) then “Disabled” else “Enabled”)) else “Not Configured”

Which would display “Disabled” if the value of Enabled = 0, and so forth.

It seems to break.
Any suggestions?

This is what I came up with that should get you in the right direction:

(item 0 of it, (if (item 1 of it equals “0”) then “Disabled” else “Enabled”)) of ((names of it, values of it) of keys of key “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers” of native registry)