Can I configure it to be placed in the same location (C:\windows\something) that .msi files produced by windows installer are hidden in, instead of in C:\Porgram Files\MyAppFolder\?

Also can I change the name to something more obvious in intent than unins000.exe?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 3 down vote accepted

The uninstaller path can be changed by setting a value in the script file:

[Setup]
UninstallFilesDir={win}\Installer

There doesn't appear to be a way to change the name.

link|improve this answer
feedback

With the shipping InnoSetup there is currently no way specify the Uninstall file name.

Since Source is available you can change the behavior the file name is stored in UninstallExeFileName and is set in GenerateFilenames() in the Install.pas

link|improve this answer
Probably overkill in my case. Out of curiosity though, does borland offer a free Delphi compiler or would I have to buy one to make the change? – Dan Neely Oct 29 '09 at 14:09
There is currently no Free Compiler – Robert Love Oct 29 '09 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.