Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
Hi, On Thu, 12 Dec 2002 17:39:17 GMT, tmh at nodomain.org (Tony Hoyle) wrote: >On Thu, 12 Dec 2002 18:27:56 +0100, Bo Berglund ><Bo.Berglund at system3r.se> wrote: > >>The problem is that when I run the setup I don't see the install option... >>It only says "Modify", "Repair" and "Remove". It also talks about maintenance >>of the program... I think that this is because it has detected that the same >>software has been installed before and so I am now only doing some extra stuff >>like adding an option or the like. >> >>This is how Microsoft/InstallShield does stuff.. :-( >> >Strange.. it doesn't do that here I see the same thing as Bo, just modify/repair/remove and no install. >Have you had any luck with the Innosetup installer? There are things >that still bug me about it (like always selecting 'full' install by >default) If you're talking about the script one the CVSNT_1_11_1_3_REL branch: it doesn't have a type section so a default one is generated automatically which has 'full' as the default type. Note that it doesn't always select it: the previously selected setup type is remembered between updates so the user only has to select a type on the first install. Anyway, here's an example [Types] section you could use: [Types] Name: "compact"; Description: "Typical installation" Name: "full"; Description: "Full installation" Name: "custom"; Description: "Custom installation"; Flags: iscustom >and it's got at least one bug (try hitting the back button >from the antivirus warning page) The bug is in the script itself and can be fixed easily: use the NextButtonClick and BackButtonClick events to show that page. The ScriptDlg.iss sample in the ISX Sample dir shows how. Let me know if you want me to show how. Greetings, Martijn Laan