Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I create DWORD registry keys with wix?

Tags:

registry

wix

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?

like image 838
fredley Avatar asked Feb 21 '23 04:02

fredley


1 Answers

Looking at the docs for RegistryValue makes this obvious:

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

like image 121
fredley Avatar answered Feb 24 '23 00:02

fredley