# Server Upgrade to Version 9.19

# Upgrading through the Windows Installer Interface

  1. Double-click the new installer file.

  2. In the setup wizard, click Next.

    Welcome Screen

    Welcome Screen

  3. Read and accept the License Agreement, then click Next.

    End-User License Agreement

    End-User License Agreement

  4. The installer automatically detects the previous installation directories.

    Click Change to specify new directories; otherwise, click Next.

    Destination Folder

    Destination Folder

    Changing the Installation Directories

    Changing the Installation Directories

  5. Click Install to start the upgrade process.

    Alternatively, click Back to review any installation setting.

    Ready to Install

    Ready to Install

  6. The installer will set up all necessary files on the computer. Click Finish.

    Complete Installation

    Complete Installation

# Upgrading through the Command Line

  1. Open a command prompt with Administrator level privileges.

  2. Run the following command:

    Command Syntax
    msiexec /i <path_to_installer> /l*v <path_to_logfile> [/quiet] [/passive] <INSTALLDIR> <DATADIR> <SERVERPORT>
    Parameter Description
    /i Use this parameter for a normal installation
    <path_to_installer> Use this parameter to specify the path to the installer file
    /l*v Use this parameter to turn on logging of all information, including verbose output
    <path_to_logfile> Use this parameter to specify the path to the output log file
    /quiet Use this optional parameter to run the installation in silent mode, meaning no user interaction required
    /passive Use this optional parameter to run the installation in unattended mode, showing only a progress bar
    <INSTALLDIR> Use this optional property to specify the path where the Open iT files will be installed; the default path is C:\Program Files\OpeniT\Zero
    <DATADIR> Use this optional property to specify the path where the database will be stored; the default path is C:\Program Files\OpeniT\Zero\RavenDB\RavenData
    <SERVERPORT> Use this optional property to specify the port number of the website; the default value is 8888
    Command Parameters

    Examples

    To install openit_9_19_0_clims_server_x64.msi, from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default directories and port number:

    Example 1
    msiexec /i "C:\Installers\openit_9_19_0_clims_server_x64.msi" /l*v "C:\install.log" /passive

    To install openit_9_19_0_clims_server_x64.msi from C:\Installers in silent mode with all logging information stored in an output log file at C:\install.log, and using a preferred installation and data directories and default port number:

    Example 2
    msiexec /i "C:\Installers\openit_9_19_0_clims_server_x64.msi" /l*v "C:\install.log" /quiet INSTALLDIR="C:\CLIMSServer" DATADIR="C:\CLIMSData"

    To install openit_9_19_0_clims_server_x64.msi from C:\Installers in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default directories and 8889 as the port number:

    Example 3
    msiexec /i "C:\Installers\openit_9_19_0_clims_server_x64.msi" /l*v "C:\install.log" /passive SERVERPORT="8889"

We value your feedback!

Please take a few minutes to complete our survey and share your thoughts on your recent experience with our documentation.

Take survey

Close