|
-
Dec 4th, 2007, 02:42 PM
#1
Thread Starter
Hyperactive Member
[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?
-
Feb 27th, 2008, 12:44 AM
#2
Thread Starter
Hyperactive Member
Re: Inno Setup with a install choice
Does anyone have an answer to this. I never got any response. Hope it makes sense.
-
Feb 27th, 2008, 08:23 AM
#3
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.
-
Aug 26th, 2010, 05:18 AM
#4
Thread Starter
Hyperactive Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|