333Matt
333Matt

Reputation: 1188

Why might my Inno Setup project not be executing these lines as expected?

I want to nuke these keys. When I do so manually, it disappears from the Add/Remove Programs dialog. But running the installer with this doesn't remove them.

Code:

[Registry]
Root: HKLM32; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{F0908904-B8CF-46E2-8AA1-2DC981ABDEEE}}"; Permissions: users-full; ValueType: none; Flags: deletekey;
Root: HKLM64; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{F0908904-B8CF-46E2-8AA1-2DC981ABDEEE}}"; Permissions: users-full; ValueType: none; Flags: deletekey;

Upvotes: 1

Views: 71

Answers (1)

333Matt
333Matt

Reputation: 1188

@TLama, the double closing brace was more than suspicious, it was the cause of the lines not performing as expected. Removing the extra } did the trick - thank you!

Upvotes: 1

Related Questions