setup.ini Driver File Contents (Kodak_scanmate_i1150_win_x86_x64.exe)

;***************************************************************************
; Setup.ini
;
; This file is needed in order to run the installer in a complete silent
; mode. By default, the installer will look in its folder for this file.
; Optionally, the installer can be told to look for a setup.ini file in
; another folder.
;
; This means you can either:
; --------------------------
; 1. copying all the files off the CD onto a harddrive, and then
;    uncomment the lines below (i.e. removing the semi-colons)
;    as appropriate.
;
;    To run the installer silently, then the command line would look like:
;       D:\setup.exe /S
;
; OR
;
; 2. create a setup.ini like file, on-the-fly, and then instruct the
;    installer as to where the setup.ini is located.
;
;    To this:
;       a) create asetup.ini like file in a location that you have write
;          access to (e.g. C:\Users\xxx\AppData\Local\Temp\custsetup.ini).
;
;       b) create a 'variables file' in a location that you have write
;          access to (e.g. C:\Users\xxx\AppData\Local\Temp\instvars.txt).
;          The 'variables' file is a text file that would contain just
;          one line it. The line would start with "SETUPINIPATH="
;          and then after the equals sign you would put the full path
;          and file name.
;          For example, if you created C:\temp\custsetup.ini, then the
;          line in the file would be:
;             SETUPINIPATH=C:\Users\xxx\AppData\Local\Temp\custsetup.ini
;
;       c) on the command-line, you add the /M option and give it the
;          full path and file name to the 'variables file'. For example:
;             /M=C:\Users\xxx\AppData\Local\Temp\instvars.txt
;
;
;    To run the installer silently, then the command line would look like:
;       D:\setup.exe /S /M=C:\Users\xxx\AppData\Local\Temp\instvars.txt
;
; Copyright (c) 1998-2017 Kodak Alaris Inc.
;***************************************************************************



;***************************************************************************
; To use any of the options below, The line with [SILENT] must be
; uncommented. Each option can be uncommented individually. If all the
; items are uncommented then "setup.exe" will not show any progress and
; will not prompt the user for any input.
;
;
; You can suppress all the dialogs or individually select which ones to
; suppress. The table below lists each dialog/message and the ways to
; suppress it. The command-line column indicates the option for setup.exe
; (e.g. /s means "setup.exe /s"). The ini file column indicates the line
; within the INI file to uncomment (e.g. WELCOME means "WELCOME=1"). For
; the INI file, a value of 0 means display the dialog/message and 1 means
; do not display the dialog/message.
;
;    Description                                  Command-line   INI file
;    -----------------------------------------------------------------------
;    Progress messages                            /s
;    Welcome dialog                               /s             WELCOME
;    License Agreement dialog                     /s             WELCOME
;    Update message                               /s             UPDATE
;       - message indicating that some
;         components will be updated. if
;         suppressed, then any upgrade will
;         be performed.
;    'Please wait' messages                                      PLEASEWAIT
;       - for items like .NET Framework and
;         Smarttouch
;    Finish dialog                                /s             FINISH
;       - if suppressed and a reboot is
;         required, the reboot is NOT performed
;
;
;
; SKIPTWAINIFNODOTNET determines whether the TWAIN component is installed
; when the .NET Framewwork is not on the PC AND is not included with the
; installer. For example, if running the Web installer on a PC that does
; not have .NET Framework installed. The values are:
; --------------------------------------------------------------------------
;    0          display the message as needed (this is the default)
;    1          do not display message and continue install without TWAIN
;    2          do not display message and exit install (nothing is installed)
;
;
;
; REPORTERROR provides a way to get any error from the installer, including the
; need for a reboot. The values are listed below.
;    The results are written to the file in a Windows INI style format. They
;    are placed in the [SILENT] section. The ERRORCODE key will be the numeric
;    value of the error (e.g. ERRORCODE=5). The ERRORTEXT key will be the
;    English error text (e.g. ERRORTEXT=OS is not compatible). The REBOOT key
;    will only be present if the Finish dialog was suppressed via the FINISH
;    ini option AND a reboot is required; in which case the value will be 1
;    (e.g. REBOOT=1). If there is 'variable' data associated with the error,
;    the keys ERROR1 and ERROR2 will contain that data (e.g. ERROR1=v2.4).
; --------------------------------------------------------------------------
;    0          do no save error results (this is the default)
;    1          write results to this file
;    fullpath   the full path, include file name, to write the results into;
;                   for example: REPORTERROR=C:\SetupErr.txt
;
;    Example error (for complete list, see the bottom of this file):
;         ERRORCODE=1
;         ERRORTEXT=Can not upgrade from v2.5 to v1.0
;         ERROR1=2.5
;         ERROR2=1.0
;         REBOOT=1
;
;
;
; TEMPDIR indicates the temporary directory the installer can use for some
; files used only while the installer is running
; --------------------------------------------------------------------------
;    *          let instalelr determine the location (this is the default)
;    fullpath   the full path to the temp directory; for example:
;                   TEMPDIR=C:\MyTempFolder
;***************************************************************************
;[SILENT]
;SKIPTWAINIFNODOTNET=1
;UPDATE=1
;WELCOME=1
;PLEASEWAIT=1
;FINISH=1
;REPORTERROR=1
;TEMPDIR=*




;***************************************************************************
; You can also enable the installer to set system environment variables.
; You can do so by adding environment variable lines to the [ENVVARS] section
; of the setup.ini file.
;
; There is no limit to the number of environment variables that can be set.
; Simply follow the naming convention below to add environment variable
; name/value pairs. Replace the "EnvironmentVariableName" string with
; your environment variable name, and replace "EnvironmentVariableValue"
; with the environment variable's value.
;
; Note that the numbers need to be in sequential order, starting with number 1
; ("NAME1" and "VALUE1"). For example, if you have a NAME1=xxx and a NAME3=yyy
; (but no NAME2), then it will only create an environment variable named "xxx"
; (for NAME1).
;
; Make sure to uncomment the [ENVVARS] line and the lines for the environment
; variables that you want to set. If you only want to set one environment 
; variable, then you would uncomment the [ENVVARS], NAME1, and VALUE1 lines,
; and replace the strings to the right of the "=" signs with your environment
; variable name/value information.
;***************************************************************************
;[ENVVARS]
;NAME1=EnvironmentVariableName
;VALUE1=EnvironmentVariableValue
;NAME2=EnvironmentVariableName
;VALUE2=EnvironmentVariableValue
;NAME3=EnvironmentVariableName
;VALUE3=EnvironmentVariableValue




;***************************************************************************
; This section just list what the possible errors are that you could get
; from the installer. In the table below, Code indicates the values for
; ERRORCODE and Text indicates the values for ERRORTEXT. The ERROR1 and
; ERROR2 in the text refer to the variable data for a particular error.
; The actual string saved for ERRORTEXT will contain actual value
; (i.e. it will not have ERROR1)
;
; Code   Text	
; ----   -------------------------------------------------------------------
; -1     Installation was cancelled
; 1      Installation is missing necessary file "ERROR1". Please obtain
;           a complete installation package.
; 2      The software you are attempting to install is older than the
;           software already installed. To replace the installed software
;           (vERROR1) with an older version (vERROR2) you must uninstall
;           the software, then restart this installation.
; 3      The TWAIN driver is in use and cannot be installed. Please exit
;           all other applications and retry.
; 4      The KDS Test application is in use and cannot be installed. Please
;           exit all other applications and retry.
; 5      The Scan Validation Tool application is in use and cannot be
;           installed. Please exit all other applications and retry.
; 6      The ISIS driver is in use and cannot be installed.  Please exit
;           all other applications and retry.
; 7      This installation is not compatible with your Operating System.
; 8      This installation needs Service Pack ERROR1
; 9      Windows Service Pack ERROR1 is highly recommended for this
;           installation.
; 10     The PC does not has enough disk space available.
; 11     .Net Framework ERROR1 is not installed. It is required for the
;           TWAIN driver.
; 12     Portions of this application are already installed. Upgrade was
;           cancelled.
; 13     This software requires .Net Framework ERROR1. Please install .Net
;           Framework ERROR1 before installing this software.
; 14     This software requires .Net Framework ERROR1 with Service Pack ERROR2.
;           Please install .Net Framework ERROR1 with Service Pack ERROR2
;           before installing this software.
; 15     The installation program requires that you have administration
;           rights to continue. Please log into an account with
;           administration rights and run the installation program again.
; 16     This software requires OpenMP ERROR1. Please install OpenMP ERROR1
;           before installing this software.
; 17     Unable to install the ISIS driver (ERROR1)
; 18     Unable to install the VRS driver (ERROR1)
; 19     The software you are attempting to install is not compatible with
;           the software already installed. To install this software you
;           must uninstall "ERROR1", then restart this installation.
; 20     The software you are attempting to install is not compatible with
;           the custom software already installed. Installing this software
;           will cause you to lose any previously installed custom settings
;           associated with this software. Uninstall "ERROR1" first
; 21     Unable to install custom settings (ERROR1)
; 22     Unable to get installation information (ERROR1). If this problem
;           occurs again, please call service.
; 23     The ERROR1 application is in use.  Please exit all other applications
;           and retry.
; 24     An unexpected error has occurred (ERROR1). If this problem occurs
;           again, please call service.
; 25     The DeviceEvent DLL is in use and cannot be installed.  Please exit
;           all other applications and retry.
; 26     The WIA driver is in use and cannot be installed.  Please turn off
;           your scanner and retry.
; 27     The Driver DLL is in use and cannot be installed.  Please exit all
;           other applications and retry.
;***************************************************************************
Download Driver Pack

How To Update Drivers Manually

After your driver has been downloaded, follow these simple steps to install it.

  • Expand the archive file (if the download file is in zip or rar format).

  • If the expanded file has an .exe extension, double click it and follow the installation instructions.

  • Otherwise, open Device Manager by right-clicking the Start menu and selecting Device Manager.

  • Find the device and model you want to update in the device list.

  • Double-click on it to open the Properties dialog box.

  • From the Properties dialog box, select the Driver tab.

  • Click the Update Driver button, then follow the instructions.

Very important: You must reboot your system to ensure that any driver updates have taken effect.

For more help, visit our Driver Support section for step-by-step videos on how to install drivers for every file type.

server: web1, load: 2.16