diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-11 12:23:19 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-12 19:28:07 -0700 |
commit | ae7e9817bb10d635e031e51496f2e529595a9cfe (patch) | |
tree | c70942b721dc860dd8ea7d14e90ed0f880030983 /src/wixlib | |
parent | 13c4becf524dbd12b92f099320726aa0b59f3bbc (diff) | |
download | wix-ae7e9817bb10d635e031e51496f2e529595a9cfe.tar.gz wix-ae7e9817bb10d635e031e51496f2e529595a9cfe.tar.bz2 wix-ae7e9817bb10d635e031e51496f2e529595a9cfe.zip |
Add RemoveRegistryKey
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/UtilExtension_Platform.wxi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wixlib/UtilExtension_Platform.wxi b/src/wixlib/UtilExtension_Platform.wxi index 974169ff..d88b2a57 100644 --- a/src/wixlib/UtilExtension_Platform.wxi +++ b/src/wixlib/UtilExtension_Platform.wxi | |||
@@ -45,6 +45,14 @@ | |||
45 | </Fragment> | 45 | </Fragment> |
46 | 46 | ||
47 | <Fragment> | 47 | <Fragment> |
48 | <CustomAction Id="$(var.Prefix)RemoveRegistryKeysEx$(var.Suffix)" DllEntry="WixRemoveRegistryKeysEx" Execute="immediate" Return="ignore" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" /> | ||
49 | |||
50 | <InstallExecuteSequence> | ||
51 | <Custom Action="$(var.Prefix)RemoveRegistryKeysEx$(var.Suffix)" Before="RemoveRegistryValues" /> | ||
52 | </InstallExecuteSequence> | ||
53 | </Fragment> | ||
54 | |||
55 | <Fragment> | ||
48 | <CustomAction Id="$(var.Prefix)BroadcastSettingChange$(var.Suffix)" DllEntry="WixBroadcastSettingChange" Execute="immediate" Return="ignore" SuppressModularization="yes" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" /> | 56 | <CustomAction Id="$(var.Prefix)BroadcastSettingChange$(var.Suffix)" DllEntry="WixBroadcastSettingChange" Execute="immediate" Return="ignore" SuppressModularization="yes" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" /> |
49 | 57 | ||
50 | <InstallExecuteSequence> | 58 | <InstallExecuteSequence> |