2
votes

I am trying to use Inno Setup to bootstrap a number of prerequisites to my windows installer installation package, and am having pretty good luck with this.

Now I am wondering if the Inno Setup package can be made so that it doesn't appear in the Add/Remove Programs (ARP) windows option?

I would like the separate installations to be installed together (each is conditional) but removed separately.

I am installing the install packages into a temp folder generated by Inno Setup, so the actual files are removed at the end of the installation sequence, but the ARP is still showing.

2

2 Answers

5
votes

did you try "Uninstallable=false"

3
votes

I think I figured it out!

The registry entry for ARP is added before the installation completes, so I can remove the registry entries during the [run] section and there is no trace of the bootstrap installation left.