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

Force installation

I followed this: http://www.sophos.com/en-us/support/knowledgebase/13090.aspx

but is there a way to force installation despite if it has been installed? We needed to change servers after the breakdown of the first one, and so, the console resides on another one (another name).

Jo

:50928


This thread was automatically locked due to age.
Parents
  • Hello Jo,

    basically you'd have to have some indicator whether the forced reinstall has been performed, in the example it's a file in %windir%.

    @ECHO OFF
    IF NOT EXIST %windir%\ForcedSophosInstall#01.txt GOTO :_Install
    REM --- Check for an existing installation
    ...
    :_Install
    REM --- Deploy to Windows 2000/XP/2003/Vista/Windows7/2008/2008-R2
    \\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP\Setup.exe ...
    type \nul > %windir%\ForcedSophosInstall#01.txt
    REM --- End of the script
    :_End

     Disclaimer: This is untested :smileyhappy:

    Christian

    :50936
Reply
  • Hello Jo,

    basically you'd have to have some indicator whether the forced reinstall has been performed, in the example it's a file in %windir%.

    @ECHO OFF
    IF NOT EXIST %windir%\ForcedSophosInstall#01.txt GOTO :_Install
    REM --- Check for an existing installation
    ...
    :_Install
    REM --- Deploy to Windows 2000/XP/2003/Vista/Windows7/2008/2008-R2
    \\SERVER\SophosUpdate\CIDs\Sxxx\SAVSCFXP\Setup.exe ...
    type \nul > %windir%\ForcedSophosInstall#01.txt
    REM --- End of the script
    :_End

     Disclaimer: This is untested :smileyhappy:

    Christian

    :50936
Children
No Data