VMware Cloud Community
AnonymousDefaul
Enthusiast
Enthusiast

Creating a registry key with a non-string value

I need to create a registry key value which is of type DWORD instead of SZ. Can't see anything in the documentation about how to specify the value type. Hopefully I'm just overlooking something simple.

Labels (1)
0 Kudos
1 Reply
AnonymousDefaul
Enthusiast
Enthusiast

You can specify type of value using the <type> for <registrySet>. For example:

<registrySet>     <key>HKEY_CURRENT_USER or  or  or  or Control Panel or  or  or  or Personalization or  or  or  or Desktop Slideshow</key>     <name>10000</name>     <type>REG_DWORD</type>     <value>Interval</value> </registrySet> 

You can find more information about this action in InstallBuilder documentation

0 Kudos