Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.

    ...

    where mymsifile.msi is the path to the MSI file.

    Batch Script for Large Installations

    Below is a batch script that can be modified to suite your environment.

    Be advised this script should be run as user Administrator

    Qubeinstall.bat
    Code Block
    msiexec.exe /passive /i qube-core-$version$-WIN32-5.0-x64.msi
    msiexec.exe /passive /i qube-worker-$version$-WIN32-5.0-x64.msi
    msiexec.exe /passive /i QubeUI-$version$-WIN32-WIN32-5.0-x86.msi
    msiexec.exe /passive /i qubegui-$version$-WIN32-WIN32-5.0-x86.msi

     

    To uninstall before upgrades

    Code Block
    msiexec.exe /passive /x qube-core-$version$-WIN32-5.0-x64.msi
    msiexec.exe /passive /x qube-worker-$version$-WIN32-5.0-x64.msi
    msiexec.exe /passive /x QubeUI-$version$-WIN32-WIN32-5.0-x86.msi
    msiexec.exe /passive /x qubegui-$version$-WIN32-WIN32-5.0-x86.msi
    Warning

    Replace $version$ with relevant details

     

     

    See also Using the kickstart file