Can I create DWORD registry keys using wix?

I am trying to create a DWORD registry key by setting Type to dword . I get:

 error CNDL0021 : The RegistryValue/@Type attribute value, 'dword', is not one of the legal options: 'binary', 'expandable', 'integer', 'multiString', or 'string'. 

Which one should I use?

+4
source share
1 answer

A look at the docs for RegistryValue makes this obvious:

integer
The value is interpreted and stored as an integer (REG_DWORD).

+8
source

Source: https://habr.com/ru/post/1400961/


All Articles