[RESOLVED] Inno Setup with a install choice
I have a app that has a server version and workstation version. The server has the database files and all support files. The workstation install has only the app and support files. I have always made two different install packages in the past. What I want to do is make this into only one package. So is there an option in inno setup that the user can select different installation possibilities?
Re: Inno Setup with a install choice
Does anyone have an answer to this. I never got any response. Hope it makes sense.
Re: Inno Setup with a install choice
Sure you can. Use the [Task] and [Components] sections to accomplish that. If the choose the server selection in the components section you only install the tasks that relate to that component.
Re: Inno Setup with a install choice
This is years late but saw the open post so here is what i did in the inno setup script and it works great
Code:
[Types]
Name: "Full"; Description: "Single PC Or Server Setup"
Name: "Network"; Description: "Networked Work Station Setup"
Name: "custom"; Description: "Custom Setup"; Flags: iscustom
[Components]
Name: "AutoOSUpdater"; Description: "DataBase Support Files"; Types: Full Network custom; Flags: fixed
Name: "FullProgramFiles"; Description: "Single PC Or Server Files"; Types: Full; Flags: exclusive
Name: "FullProgramFiles\Desktop"; Description: "Desktop Shortcut"; Types: Full
Name: "FullProgramFiles\QuickLaunch"; Description: "Quick Launch Shortcut"; Types: Full
Name: "NetworkProgramFiles"; Description: "Networked Work Station Files"; Types: Network; Flags: exclusive