windows - WIX / MSI value not removed -
windows - WIX / MSI value not removed -
i'm using wix 3.8 build installer. have custom property this:
<property id="foo" value="1234" />
which i'm using set custom registry value:
<registrykey id='id1' root='hklm' key='software\acme\bar' action='create'> ... <registryvalue type='binary' name='foobinary' value='[foo]'/> ...
it works fine when uninstall package, foobinary stays in registry. happens if utilize custom property. doing wrong?
acording documentation can add together forcedeleteonuninstall attribute value yes registrykey element.
set attribute 'yes' remove key values , subkeys when parent component uninstalled. note value useful if programme creates additional values or subkeys under key , want uninstall remove them. msi removes values , subkeys creates, alternative adds additional overhead uninstall. default "no".
windows wix installer windows-installer
Comments
Post a Comment