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

Is there a MSI Installer available?

Hi All,

I'm wondering if there will be a MSI Installer at some point in the near future?  This would be use to push the Sophos Cloud via Group Policy

This would benefit a lot of people I reckon where by we can just deploy the full offline client to end points

Currently the following KB https://community.sophos.com/kb/en-us/121318 is used to create a full offline installer.  However this is just a exe file and not a MSI File.

Yes we could go through and use third-party tools to convert it from exe to MSI but sometimes these tools are not 100% effective.



This thread was automatically locked due to age.
Parents
  • I know this isn't quite what you're looking for, but I did this with a simple batch script.

    1. create the batch script; here's mine:

    @echo off

    sc query SophosNetworkTrafficRelay | find "does not exist" >nul
    if %errorlevel% equ 0 (goto install) else (goto end)

    :install
    mkdir C:\sophos
    cd C:\sophos
    copy \\share\sophos\CSGInstall.exe C:\sophos\CSGInstall.exe
    CSGInstall.exe -q
    goto end

    :end

    2. Place batch script and CSGInstall.exe into a shared folder with permissions set to allow domain computer to access (the computers themselves)

    3. Set the script as a startup script via GPO

    4. Schedule a reboot via GPO

Reply
  • I know this isn't quite what you're looking for, but I did this with a simple batch script.

    1. create the batch script; here's mine:

    @echo off

    sc query SophosNetworkTrafficRelay | find "does not exist" >nul
    if %errorlevel% equ 0 (goto install) else (goto end)

    :install
    mkdir C:\sophos
    cd C:\sophos
    copy \\share\sophos\CSGInstall.exe C:\sophos\CSGInstall.exe
    CSGInstall.exe -q
    goto end

    :end

    2. Place batch script and CSGInstall.exe into a shared folder with permissions set to allow domain computer to access (the computers themselves)

    3. Set the script as a startup script via GPO

    4. Schedule a reboot via GPO

Children