Results 1 to 4 of 4

Thread: [RESOLVED] Inno Setup with a install choice

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2003
    Posts
    259

    Resolved [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?

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2003
    Posts
    259

    Re: Inno Setup with a install choice

    Does anyone have an answer to this. I never got any response. Hope it makes sense.

  3. #3
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    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.

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2003
    Posts
    259

    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
  •  



Click Here to Expand Forum to Full Width