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

Script UNISTALL SOPHOS ENDPOINT

Hi There , 

So , i'm trying to remove sophos by using a script , i tried severals scripts but it doesn't work , he just disable and stop the sophos services 

 

Is there any File batch or script that can remove sophos definitely plzz 

 

Thank you 



This thread was automatically locked due to age.
Parents
  • I created a batch file that is deployed via GPO. It stops the update service, and then uninstalls the various components installed in our environment.  Info on finding the reg keys for your environment - https://community.sophos.com/kb/en-us/109668

    Also make sure you first disable tamper protection in your console - https://community.sophos.com/kb/en-us/119175

    The GPO is under Computer Configuration -> Policies -> Windows Settings -> Scripts -> Startup

    ----------------------------

    net stop "Sophos AutoUpdate Service"

    ::Sophos Remote Management System

    MsiExec.exe /X{FED1005D-CBC8-45D5-A288-FFC7BB304121} /qn REBOOT=SUPPRESS

    ::Sophos Network Threat Protection

    MsiExec.exe /X{604350BF-BE9A-4F79-B0EB-B1C22D889E2D} /qn REBOOT=SUPPRESS

    ::Sophos Endpoint Defense

    "C:\Program Files\Sophos\Endpoint Defense\uninstall.exe" /quiet

    ::Sophos Anti-Virus

    MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS

    ::Sophos AutoUpdate

    MsiExec.exe /X{AFBCA1B9-496C-4AE6-98AE-3EA1CFF65C54} /qn REBOOT=SUPPRESS

    ----------------------------

Reply
  • I created a batch file that is deployed via GPO. It stops the update service, and then uninstalls the various components installed in our environment.  Info on finding the reg keys for your environment - https://community.sophos.com/kb/en-us/109668

    Also make sure you first disable tamper protection in your console - https://community.sophos.com/kb/en-us/119175

    The GPO is under Computer Configuration -> Policies -> Windows Settings -> Scripts -> Startup

    ----------------------------

    net stop "Sophos AutoUpdate Service"

    ::Sophos Remote Management System

    MsiExec.exe /X{FED1005D-CBC8-45D5-A288-FFC7BB304121} /qn REBOOT=SUPPRESS

    ::Sophos Network Threat Protection

    MsiExec.exe /X{604350BF-BE9A-4F79-B0EB-B1C22D889E2D} /qn REBOOT=SUPPRESS

    ::Sophos Endpoint Defense

    "C:\Program Files\Sophos\Endpoint Defense\uninstall.exe" /quiet

    ::Sophos Anti-Virus

    MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS

    ::Sophos AutoUpdate

    MsiExec.exe /X{AFBCA1B9-496C-4AE6-98AE-3EA1CFF65C54} /qn REBOOT=SUPPRESS

    ----------------------------

Children
No Data