Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4

Thread: Silent install

  1. #1
    Join Date
    Feb 2007
    Posts
    43

    Silent install

    Hello,

    I'm trying to use the silent mode but I can't install my application in this way.
    When I launch it with setup.exe "/S:c:\setupvars.ini" only few things are done.

    I read on a previous version that all screen event like next, previous, ... are not executed, is it true?
    My installation is really personnalised, is it possible to use these event in silent mode?

    A copy of my ini files :
    Code:
    [SetupValues]
    %LangSelection%=605
    %Code%=-_8wy_ohjm
    %KeyCode%=GDBI
    %AppFolder%=c:\EGR2\
    %EGR%=EasternGraphics
    %TAX%=21
    %CURRENCY%=EUR
    %UserName%=dave
    %UserCompany%=GDBI

  2. #2
    Join Date
    Jan 2001
    Location
    Anderson Island, WA, USA
    Posts
    2,863
    Quote Originally Posted by davels View Post
    I read on a previous version that all screen event like next, previous, ... are not executed, is it true?
    My installation is really personnalised, is it possible to use these event in silent mode?
    In Silent Mode only:
    On Startup
    Pre Install
    Post Install
    On Shutdown

    are run -- no screens (or their actions) are performed... otherwise, it's not a "silent" install.


    (Click here to contact me)
    Providing Independent Professional Consulting Services for
    IndigoRose products, World Wide.
    Located in -8:00 (-7:00 DST) GMT Timezone (Western United States)

  3. #3
    Join Date
    Feb 2007
    Posts
    43
    Quote Originally Posted by jassing View Post
    -- no screens (or their actions) are performed... otherwise, it's not a "silent" install.
    I believe that operations could be done in silent...

    Well this is not really a good news but I will try to find a fast solutions

  4. #4
    Join Date
    Jan 2001
    Location
    Anderson Island, WA, USA
    Posts
    2,863
    Quote Originally Posted by davels View Post
    I believe that operations could be done in silent...

    Well this is not really a good news but I will try to find a fast solutions
    What i've done for clients is to put all the "code" that gets run in ON Next into global functions

    function MyScreenNext()
    etc.

    Then in "pre install" I do:
    if _SilentInstall then
    MyScreenNext();
    end

    this way if it's a silent instlal; the screen code still gets run; and there's no "duplication" of code.

    I think it's proper that screen code doesn't get run -- what i you had a screen (license screen) -- you would need to define what controls are clicked, in what order etc. How would it know what code to run in OnCtrl?


    (Click here to contact me)
    Providing Independent Professional Consulting Services for
    IndigoRose products, World Wide.
    Located in -8:00 (-7:00 DST) GMT Timezone (Western United States)

Similar Threads

  1. Silent / unattended install
    By tkroeckel in forum Setup Factory 7.0
    Replies: 6
    Last Post: 01-21-2009, 08:49 AM
  2. Setup Factory and VS 2005
    By vazir786 in forum Setup Factory 7.0
    Replies: 4
    Last Post: 01-13-2006, 08:47 PM
  3. HOWTO: Download and Install Files from the Web
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-23-2002, 01:16 PM
  4. HOWTO: Limit the Number of Times an Install can be Run
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-17-2002, 02:58 PM
  5. HOWTO: Create a Silent Install with Setup Factory 5.0
    By Support in forum Setup Factory 5.0
    Replies: 0
    Last Post: 10-08-2002, 02:08 PM

Posting Permissions

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