Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

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

Deploy SophosConnect.msi silently?

Are there switches or options available for the SophosConnect.msi documented anywhere? We do not use GPOs to deploy and would like to deploy this silently for example. The deployment KB article does not document this.



This thread was automatically locked due to age.
Parents
  • Hi ken9000,

    As the Sophos Connect installer is an MSI, you should be able to create a batch file to install using "msiexec.exe /i pathtoinstaller.msi -quiet /L*v C:\Windows\Temp\SophosConnectInstaller.txt.

    @echo off
    SET SOPHOS_CONNECT=Sophos\Connect\GUI\scgui.exe
    IF "%PROCESSOR_ARCHITECTURE%" == "x86" GOTO X86_PROG
    IF NOT EXIST "%ProgramFiles(x86)%\%SOPHOS_CONNECT%" GOTO INSTALL
    exit /b 0

    :X86_PROG
    IF NOT EXIST "%ProgramFiles%\%SOPHOS_CONNECT%" GOTO INSTALL
    exit /b 0

    :INSTALL
    pushd \\servername\share
    msiexec.exe /i SophosConnect.msi -quiet /L*v "C:\Windows\Temp\SophosConnectInstaller.txt"
    Popd

Reply
  • Hi ken9000,

    As the Sophos Connect installer is an MSI, you should be able to create a batch file to install using "msiexec.exe /i pathtoinstaller.msi -quiet /L*v C:\Windows\Temp\SophosConnectInstaller.txt.

    @echo off
    SET SOPHOS_CONNECT=Sophos\Connect\GUI\scgui.exe
    IF "%PROCESSOR_ARCHITECTURE%" == "x86" GOTO X86_PROG
    IF NOT EXIST "%ProgramFiles(x86)%\%SOPHOS_CONNECT%" GOTO INSTALL
    exit /b 0

    :X86_PROG
    IF NOT EXIST "%ProgramFiles%\%SOPHOS_CONNECT%" GOTO INSTALL
    exit /b 0

    :INSTALL
    pushd \\servername\share
    msiexec.exe /i SophosConnect.msi -quiet /L*v "C:\Windows\Temp\SophosConnectInstaller.txt"
    Popd

Children