Harvest

 View Only

TECH TIP: Example Syntax of Silent Command Line for V13 Client install

  • 1.  TECH TIP: Example Syntax of Silent Command Line for V13 Client install

    Posted Jun 02, 2017 04:24 PM

    REM Here is a silent install of V13 "32bit client" - this is intended for harvest administrators for it will install

    workbench + admin GUI.
    REM Example, assumes that the 32bit Harvest client install is at c:\installs\Harvest13GA\win_32bit,

    your actual install media may be located in a different place, so make correction below as needed....

     

    REM this is syntax on a 32bit Windows OS system:

    cd c:\Installs\Harvest13GA\win_32client
    setup.exe /s /v" /qn ADDLOCAL=Administrator,Workbench,Documentation,CommandLine,Windows Shell Extensions (HarWin) INSTALLPECTONETWORK=No ALLUSERS=1 INSTALLDIR=\"C:\Program files\CA\" /L*v \"c:\Temp\clientR13GA.log\" REBOOT=ReallySuppress "
    if not exist "C:\Program Files\CA\SCM\workbench.exe" goto R13GAFAILED

     

    REM This is syntax for a 64bit Windows OS system:

    cd c:\Installs\Harvest13GA\win_32client
    setup.exe /s /v" /qn ADDLOCAL=Administrator,Workbench,Documentation,CommandLine,Windows Shell Extensions (HarWin) INSTALLPECTONETWORK=No ALLUSERS=1 INSTALLDIR=\"C:\Program files (x86)\CA\" /L*v \"c:\Temp\clientR13GA.log\" REBOOT=ReallySuppress "
    if not exist "C:\Program Files (x86)\CA\SCM\workbench.exe" goto R13GAFAILED
    goto FINI

     

    :R13GAFAILED
    echo CA SCM CLIENT R13GA FAILED TO INSTALL !!!  See c:\Temp\clientR13GA.log
    cd \
    exit

     

    :FINI
    cd \
    echo FINISHED
    shutdown -r -t 10

    REM The "shutdown -r -t 10" will cause a reboot.