Reputation: 33901
I'm trying to create a DWORD registry key by setting Type
to dword
. I'm getting:
error CNDL0021 : The RegistryValue/@Type attribute's value, 'dword', is not
one of the legal options: 'binary', 'expandable', 'integer',
'multiString', or 'string'.
Which of these should I use?
Upvotes: 4
Views: 2934
Reputation: 33901
Looking at the docs for RegistryValue makes this obvious:
integer
The value is interpreted and stored as an integer (REG_DWORD).
Upvotes: 8