+ Reply to Thread
Results 1 to 4 of 4

Thread: Enable Web Installation option

  1. #1
    Unregistered Guest

    Default Enable Web Installation option

    Is there a way to set "Enable Web Installation" option from the command line? I'd like to be able to use one project to build a full standalone install and a full web install. These installs would be created on a build server as part of our build process. Could I somehow use the Releases area to handle this?

  2. #2
    Join Date
    Mar 2004
    Posts
    4,308

    Default Re: Enable Web Installation option

    Hello,

    One option to handle it is via "Releases".

    1. Create a new compiler variable (e.g. [DISABLE_WEBINSTALL]) and set the variable value to 0.

    2. Enable the Web Installation option.

    3. Create a "Release" (e.g. DisableWebInstall) and in the Compiler Variables Releases Properties, set [DISABLE_WEBINSTALL] to 1.

    4. In the Script Editor, add the following:

    Code:
    #ifcompvar [DISABLE_WEBINSTALL] Equals "1" Then
    #pragma DISABLEWEBINSTALL = "1"
    #end
    Compiled via the "DisableWebInstall" Release, it will compile a single-file install image. Otherwise, a Web Install image.

    Does this help?

    Friedrich
    Attached Images Attached Images     

  3. #3
    Unregistered Guest

    Default Re: Enable Web Installation option

    Thanks! I was able to make both installs using your steps.

  4. #4
    Join Date
    Mar 2004
    Posts
    4,308

    Default Re: Enable Web Installation option

    Perfect! Thank you for the update.

    Friedrich

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •