Loading
Silent install /r not recording
I am trying to built a ISS file to make a silent installation.

 

My install is very simple - no custom dialog boxes.

 

But when I do "setup /r" there is no ISS file recorded anywhere on the hard drive.

 

I tried "setup /r /f1"C:\users\xxx\desktop\setup.iss" just in case this was a windows 7 security issue. Still no luck.

 

Any ideas? Is this a limitation the express edition?

  • The silent response file is applicable to InstallScript projects in the Premier and Professional editions of InstallShield. Express projects (or Basic MSI projects in the Premier or Professional editions) do not create or read response files.

     

    To run an Express installation silently, all you need to do is type the following at the command line:

     

    msiexec /i Product.msi /qn

     

    If your release settings include Setup.exe, you can run the following command:

     

    Setup.exe /s /v"/qn"

     

    I hope that helps.
    Expand Post
  • Thanks Debbie. They should put a table somewhere with the differences between products...

     

    My build is a single setup.exe

     

    The Setup.exe /s /v"/qn" command makes the windows cursor flash a little, but no install takes place. IS there a log file somewhere that can help tell me what is happening? Is there a flag or another setting in Installshield I need to set?
    Expand Post
  • To log the installation, use something like this at the command line:

     

    setup.exe /s /v"/l*v \"c:\My Log File.txt\" /qn"

     

    For more information on logging and the available command-line parameters, see the "Setup.exe" help topic in the InstallShield Express Help Library (available when you press F1 from within the InstallShield Express Edition). It's available in the Reference section of the help (Reference > Command-Line Tools > Setup.exe).

     

    I'm not sure where you found out about the response files for silent InstallScript installations, but it is not documented in the InstallShield Express Edition Help Library. That help system does have a help topic called "Upgrading to the Premier or Professional Editions of InstallShield"; it lists functionality that is not available in the Express edition, but is available in the Premier edition or is available in both the Premier and Professional editions. Although that help topic doesn't list silent response files specifically, it does list that InstallScript support is available only in the Premier and Professional editions.

     

    I hope that helps.
    Expand Post
  • I cut&pasted that statement into my command line windows and I just get a dialog box that pops up labeled "windows installer" and this text.

     

     

    Windows ® Installer. V 5.0.7601.17514

     

    msiexec /Option [Optional Parameter]

     

    Install Options

     

     

    Installs or configures a product

     

    /a

     

    Administrative install - Installs a product on the network

     

    /j [/t ] [/g ]

     

    Advertises a product - m to all users, u to current user

     

     

    Uninstalls the product

     

    Display Options

     

    /quiet

     

    Quiet mode, no user interaction

     

    /passive

     

    Unattended mode - progress bar only

     

    /q[n|b|r|f]

     

    Sets user interface level

     

    n - No UI

     

    b - Basic UI

     

    r - Reduced UI

     

    f - Full UI (default)

     

    /help

     

    Help information

     

    Restart Options

     

    /norestart

     

    Do not restart after the installation is complete

     

    /promptrestart

     

    Prompts the user for restart if necessary

     

    /forcerestart

     

    Always restart the computer after installation

     

    Logging Options

     

    /l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*]

     

    i - Status messages

     

    w - Nonfatal warnings

     

    e - All error messages

     

    a - Start up of actions

     

    r - Action-specific records

     

    u - User requests

     

    c - Initial UI parameters

     

    m - Out-of-memory or fatal exit information

     

    o - Out-of-disk-space messages

     

    p - Terminal properties

     

    v - Verbose output

     

    x - Extra debugging information

     

    + - Append to existing log file

     

    ! - Flush each line to the log

     

    * - Log all information, except for v and x options

     

    /log

     

    Equivalent of /l*

     

    Update Options

     

    /update [;Update2.msp]

     

    Applies update(s)

     

    /uninstall [;Update2.msp] /package

     

    Remove update(s) for a product

     

    Repair Options

     

    /f[p|e|c|m|s|o|d|a|u|v]

     

    Repairs a product

     

    p - only if file is missing

     

    o - if file is missing or an older version is installed (default)

     

    e - if file is missing or an equal or older version is installed

     

    d - if file is missing or a different version is installed

     

    c - if file is missing or checksum does not match the calculated value

     

    a - forces all files to be reinstalled

     

    u - all required user-specific registry entries (default)

     

    m - all required computer-specific registry entries (default)

     

    s - all existing shortcuts (default)

     

    v - runs from source and recaches local package

     

    Setting Public Properties

     

    [PROPERTY=PropertyValue]

     

    Consult the Windows ® Installer SDK for additional documentation on the

     

    command line syntax.

     

    Copyright © Microsoft Corporation. All rights reserved.

     

    Portions of this software are based in part on the work of the Independent JPEG Group.
    Expand Post
  • OK I got a logfile finally to generate with this statement:

     

    setup.exe /s /v/qn /debuglog"C:\users\scott\desktop\silent.log"

     

    With Win7 you need to save to a directory with proper permissions.

     

    The last statement in the log is:

     

    Setup returning 1603

     

    - My application requires .net 4.0 and the install program handles detection and installation just fine. But it looks like it is failing in silent mode. The computer

     

    I am testing on already has .Net 4.0 installed.

     

    The log file also shows this:

     

    "Skipping prerequisite 'Microsoft .NET Framework 4.0 Full.prq' because it was installed before the reboot"

     

    Where next?
    Expand Post
  • The debuglog contains information about Setup.exe. It doesn't contain information about the .msi part of the installaton. Can you try logging with the corrected command line that I posted, and then post both of the log files?
  • The log file contains this:

     

    " MSI (s) (D0:38) [10:13:41:521]: Product: Snap Will -- Error 1925. You do not have sufficient privileges to complete this installation for all users of the machine. Log on as an administrator and then retry this installation. "

     

    When Windows Installer doesn't display the installation's UI, it also doesn't provide the UAC dialogs or elevate. To resolve the error, launch the installation silently from an elevated Command Prompt window. (Right-click the shortcut for the Command Prompt and then click Run as administrator. Then use the same command line to launch the setup.)
    Expand Post
10 of 17

Loading
Silent install /r not recording