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 via Active Directory

Hi

Is there a way to do a one-time forced installation of Sophos?

I have seen the knowledgebase articlehttp://www.sophos.com/en-us/support/knowledgebase/13090.aspx

but id like to set something up so that the next time any PC is rebooted it gets a forced installattion of Sophos.

Maybe by dropping in a new text file with it which is then checked on subsequent logins.

I could do this via the Enterprise Console but this means that I need to make sure that all of hte PC's are switched on when I deploy it.

Thanks

:36117


This thread was automatically locked due to age.
Parents
  • @ECHO OFF
     IF EXIST ""C:\Program Files\Sophos\_bsfc.txt" goto _End
    REM --- Check for an existing installation of Sophos AutoUpdate on 32-bit (the 'Sophos AutoUpdate Service' process)
     IF EXIST "C:\Program Files\Sophos\AutoUpdate\ALsvc.exe" goto _End
    REM --- Check for an existing installation of Sophos AutoUpdate on 64-bit (the 'Sophos AutoUpdate Service' process)
     IF EXIST "C:\Program Files (x86)\Sophos\AutoUpdate\ALSVC.exe" goto _End
    REM --- Check for an existing installation of Sophos Anti-Virus on Vista+ (the SAV adapter config file)
     IF EXIST "C:\ProgramData\Sophos\Remote Management System\3\Agent\AdapterStorage\SAV\SAVAdapterConfig" goto _End
    REM --- Deploy to Windows 2000/XP/2003/Vista/Windows7/2008/2008-R2
     \\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP\Setup.exe -updp "\\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP" -user USER -pwd PWD -mng yes
    REM --- Copy text file into place to skip subsequent installations
     copy "\\SERVER\SophosUpdate\_bsfc.txt" "C:\Program Files\Sophos\"
    REM --- End of the script
    :_End

    :36121
Reply
  • @ECHO OFF
     IF EXIST ""C:\Program Files\Sophos\_bsfc.txt" goto _End
    REM --- Check for an existing installation of Sophos AutoUpdate on 32-bit (the 'Sophos AutoUpdate Service' process)
     IF EXIST "C:\Program Files\Sophos\AutoUpdate\ALsvc.exe" goto _End
    REM --- Check for an existing installation of Sophos AutoUpdate on 64-bit (the 'Sophos AutoUpdate Service' process)
     IF EXIST "C:\Program Files (x86)\Sophos\AutoUpdate\ALSVC.exe" goto _End
    REM --- Check for an existing installation of Sophos Anti-Virus on Vista+ (the SAV adapter config file)
     IF EXIST "C:\ProgramData\Sophos\Remote Management System\3\Agent\AdapterStorage\SAV\SAVAdapterConfig" goto _End
    REM --- Deploy to Windows 2000/XP/2003/Vista/Windows7/2008/2008-R2
     \\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP\Setup.exe -updp "\\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP" -user USER -pwd PWD -mng yes
    REM --- Copy text file into place to skip subsequent installations
     copy "\\SERVER\SophosUpdate\_bsfc.txt" "C:\Program Files\Sophos\"
    REM --- End of the script
    :_End

    :36121
Children
No Data