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

Sophos removal script?

Hi,

I'm rolling out ESC 9.5 on our network, but I've found a few machines on a remote site running 7.6 - I've tried to upgrade them and they fail, and attempting to uninstall Sophos doesn't work. I recall having a Sophos-supplied removal script in the past, does anyone have a link to the most recent version of this so I can completely remove all Sophos-related stuff from these PCs and roll out 9.5 to them?

Cheers

JD

:4729


This thread was automatically locked due to age.
Parents
  • Script I wrote. Save as a batch file and have Active Directory run it.

    REM --- Removes Sophos Desktop Software

    @ECHO OFF

    REM --- Check for an existing installation of Sophos Desktop Software

    if not exist "%programfiles%\Sophos\" goto _End

    REM --- Deploy to Windows 2000/XP/2003

    MsiExec /X{15C418EB-7675-42be-B2B3-281952DA014D} /Q /NORESTART

    MsiExec /X{FED1005D-CBC8-45D5-A288-FFC7BB304121} /Q /NORESTART

    MsiExec /X{9ACB414D-9347-40B6-A453-5EFB2DB59DFA} /Q /NORESTART

    REM --- End of the script

    :_End

    exit

    :16979
Reply
  • Script I wrote. Save as a batch file and have Active Directory run it.

    REM --- Removes Sophos Desktop Software

    @ECHO OFF

    REM --- Check for an existing installation of Sophos Desktop Software

    if not exist "%programfiles%\Sophos\" goto _End

    REM --- Deploy to Windows 2000/XP/2003

    MsiExec /X{15C418EB-7675-42be-B2B3-281952DA014D} /Q /NORESTART

    MsiExec /X{FED1005D-CBC8-45D5-A288-FFC7BB304121} /Q /NORESTART

    MsiExec /X{9ACB414D-9347-40B6-A453-5EFB2DB59DFA} /Q /NORESTART

    REM --- End of the script

    :_End

    exit

    :16979
Children
No Data