This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Installation script for 6.01

Just upgrade from 5.60 to 6.01. In the past I have used a script that worked fine with the 5.60 client but now not with 6.01.

Have gone thru and changed the entries that had  pointed to the old 5.60 to 6.01 but only the preinstall installs. When it gets to sgnclient.msi it starts to install, get to about 4 secs left l, then progress bar back tracks, and the installs stops. If do it by hand works fine.

Any ideas what the is different between the msi files between 5.60 and 6.01 could be?

Keep looking at the old script and the new one and can't see what is the problem is.

Any have any ideas?

:46275


This thread was automatically locked due to age.
  • We just use the following

    Open notepad copy and paste the following

    @echo off
    cls

    goto preinstall

    :preinstall
    cls
    echo Installing Preinstall
    msiexec /i \\starray\software\SGxClientPreinstall.msi /qn
    PAUSE
    goto clientinstall

    :clientinstall
    cls
    echo Installing Safeguard client
    msiexec /i \\starray\software\sgnclient.msi /qn POACFG=\\starray\software\POACFG_as_of_6_00_1.xml
    PAUSE
    goto configpackage


    :configpackage
    cls
    echo Installing Safeguard configuration package
    msiexec /i "\\starray\software\Initial Client Config.msi" /qn REBOOT=ReallySuppress

    save as and save has a .cmd, it needs to be run has an admin within Windows 7.

    :46285