Sophos Central Endpoint deinstallieren (ZAP)
Zitat von mpca am 5. Mai 2021, 10:01 Uhrhttps://www.hasslinger.com/index.php/de/blog/sophos-central-endpoint-deinstallieren-mit-sophos-zap-tool
Wenn die Deinstallation mit einem MSI Fehler beendet wird und im Eventlog eine fehlende Datei dokumentiert wird, einfach von einem funktionierenden Rechner das Sophos AV Verzeichnis kopieren (den Inhalt), danach kann er den AV wieder deinstallieren ohne Fehler.
Grund dafür und für eine event. Autoisolation, beim Update ist etwas schief gelaufen und es fehlen einfach Dateien.
###
https://support.utm-shop.de/blog/technische_informationen/sophos-central-endpoint-deinstallieren
In diesem Artikel erfahren Sie, wie Sie den Sophos Endpoint von ihrem Windows Client deinstallieren.
Um die Deinstallation durchzuführen, werden Adminrechte auf dem Client benötigt.
Manipulationsschutz deaktivieren
- Melden Sie sich an ihrem Sophos Central Admin Konto an.
- Navigieren Sie zu Endpoint Protection –> Computer
- Wählen Sie den Computer aus, für den Sie den Manipulationsschutz deaktivieren möchten.
- Unter dem Bereich Geräteverschlüsselung finden Sie die Option zum deaktivieren des Manipulationsschutzes. Es kann ein paar Minuten in Anspruch nehmen, bis die Änderung synchronisiert wird.
- Nachdem Sie den Maniupulationsschutz deaktiviert haben, können Sie mit der Deinstallation beginnen. Öffnen Sie die Systemsteuerung des Clients und wählen Sie Programme deinstallieren aus.
- Suchen Sie den „Sophos Endpoint Agent“ aus der Liste. Klicken Sie anschließend auf Deinstallieren.
- Öffnen Sie Sophos Central Admin erneut.
- Navigieren Sie zu Endpoint Protection –> Computer
- Durch Auswählen des Computers und klicken auf Löschen, können Sie den Computer nun aus Central entfernen.
Sophos Central Endpoint mit aktiviertem Manipulationsschutz deinstallieren
Haben Sie den Client aus der Liste der Computer in Sophos Central Admin entfernt, ohne den Manipulationsschutz zu deaktivieren, ist es nicht ohne weiteres möglich, den Sophos Endpoint Agent von dem Client zu entfernen. Die folgende Anleitung sollte nicht genutzt werden, solange es möglich ist, den Manipulationsschutz normal zu deaktivieren!
- Starten Sie das Windows-System im abgesicherten Modus.
- Klicken Sie auf Start –> Ausführen und geben Sie „services.msc“ ein. Bestätigen Sie mit Enter oder einem Klick auf OK.
- Suchen Sie nach dem Service „Sophos Anti-Virus“ und machen Sie einen Rechtsklick.
- Wählen Sie Eigenschaften aus dem Kontextmenü aus.
- Deaktivieren Sie den Service.
- Klicken Sie erneut auf Start –> Ausführen. Geben Sie „regedit“ ein. Bestätigen Sie mit Enter oder einem Klick auf OK.
- Wechseln Sie im Registrierungseditor zum Speicherort: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sophos MCS Agent
- Setzen Sie REG_DWORD „Start“ auf 0x00000004
- Wechseln Sie den Speicherort auf: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sophos Endpoint Defense\TamperProtection\Config
- Setzen Sie die REG_DWORD-Werte „SAVEnabled“ und „SEDEnabled“ auf 0
- Wechseln Sie den Speicherort auf: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Sophos\SAVService\TamperProtection
- Setzen Sie den Wert bei „REG_DWORD“ auf 0
- Starten Sie das System im normalen Modus.
Der Manipulationsschutz sollte nun deaktiviert sein und Sie können mit der normalen Deinstallation fortfahren.
https://support.sophos.com/support/s/article/KB-000033686?language=en_US
Overview
This knowledge base article provides information on gathering the uninstall string of different Sophos Endpoint Security and Control components and how to uninstall each using a command line or a batch file. Every product version has a different uninstall string, meaning that the script does not uninstall components as expected.
Do not run the uninstall batch file on a computer with the Sophos Management Server, one that has been designated as a Message Relay, or on computers running server-side components such as Sophos Update Manager or Sophos PureMessage.
Sophos is not accountable for any loss of data resulting from following these instructions.
Aside from uninstalling Sophos using the uninstall strings, you can also remove Sophos using our tool called SophosZap.
The following sections are covered:
Applies to the following Sophos products and versions:
Sophos Endpoint Security and ControlGet the uninstall strings
Open a Command Prompt with admin privilege and run the following commands:
- 32-bit:
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall /s /f SOPHOS > C:\Sophos_Uninstall_Strings.txt
- 64-bit:
REG QUERY HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall /s /f SOPHOS > C:\Sophos_Uninstall_Strings.txt
Example:
For Sophos Anti-Virus
10.8.4.227
, the commandREG QUERY
will result toHKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{01423865-551B-4C59-B44A-CC604BC21AF3}
The uninstall command will then be
MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3}
Note: On a 64-bit computer, run as well the 32-bit
REG QUERY
command if the other Sophos components aren’t appearing.Review the Windows installer parameters
The uninstall strings copied from the registry may contain
MsiExec.exe
parameters. Change the parameters to control what the user sees on the screen and how the computer behaves.For example, the uninstall string for Sophos Anti-Virus
10.8.4.227
and the modified actions are the following:
Action String Uninstall string MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3}
Silent uninstall MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn
Delay restart MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS
Logs created MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS /L*v %windir%\Temp\Uninstall_SAV10_Log.txt
It’s advisable to create a log file as part of the uninstall process for each component to help facilitate troubleshooting if an issue appears. A separate file is needed for each component.
For further information on Windows Installer (
MsiExec.exe
) and its associated parameters, it is recommended that you consult up-to-date Microsoft documentation.Create the batch file
- Turn off tamper protection on the computer that Sophos will be uninstalled from.
- Stop Sophos AutoUpdate Service to prevent a potential update or conflict during the uninstall process. The command
net stop "Sophos AutoUpdate Service"
can be included in the batch file.- Open Notepad and paste the uninstall string for each component. Make sure to observe the following order:
- Sophos Remote Management System
- Sophos Network Threat Protection
- Sophos Client Firewall
- Sophos Anti-Virus
- Sophos AutoUpdate
- Sophos Diagnostic Utility
- Sophos Exploit Prevention or Sophos CryptoGuard (on a Server)
- Sophos Clean
- Sophos Patch Agent
- Sophos Endpoint Defense
Note: For more information, go to Sophos Central Endpoint and Server: How to uninstall Sophos using the command line or a batch file.
- Save the file and change its extension from
.txt
to.bat
.- Try the batch file on a test computer.
If the uninstall fails, extract the SDU logs from the affected endpoint or server. Download and run the Windows zip version from Sophos Diagnostic Utility (SDU): How to locate and download, then submit the logs to Sophos Support.
Wenn die Deinstallation mit einem MSI Fehler beendet wird und im Eventlog eine fehlende Datei dokumentiert wird, einfach von einem funktionierenden Rechner das Sophos AV Verzeichnis kopieren (den Inhalt), danach kann er den AV wieder deinstallieren ohne Fehler.
Grund dafür und für eine event. Autoisolation, beim Update ist etwas schief gelaufen und es fehlen einfach Dateien.
###
https://support.utm-shop.de/blog/technische_informationen/sophos-central-endpoint-deinstallieren
In diesem Artikel erfahren Sie, wie Sie den Sophos Endpoint von ihrem Windows Client deinstallieren.
Um die Deinstallation durchzuführen, werden Adminrechte auf dem Client benötigt.
Manipulationsschutz deaktivieren
- Melden Sie sich an ihrem Sophos Central Admin Konto an.
- Navigieren Sie zu Endpoint Protection –> Computer
- Wählen Sie den Computer aus, für den Sie den Manipulationsschutz deaktivieren möchten.
- Unter dem Bereich Geräteverschlüsselung finden Sie die Option zum deaktivieren des Manipulationsschutzes. Es kann ein paar Minuten in Anspruch nehmen, bis die Änderung synchronisiert wird.
- Nachdem Sie den Maniupulationsschutz deaktiviert haben, können Sie mit der Deinstallation beginnen. Öffnen Sie die Systemsteuerung des Clients und wählen Sie Programme deinstallieren aus.
- Suchen Sie den „Sophos Endpoint Agent“ aus der Liste. Klicken Sie anschließend auf Deinstallieren.
- Öffnen Sie Sophos Central Admin erneut.
- Navigieren Sie zu Endpoint Protection –> Computer
- Durch Auswählen des Computers und klicken auf Löschen, können Sie den Computer nun aus Central entfernen.
Sophos Central Endpoint mit aktiviertem Manipulationsschutz deinstallieren
Haben Sie den Client aus der Liste der Computer in Sophos Central Admin entfernt, ohne den Manipulationsschutz zu deaktivieren, ist es nicht ohne weiteres möglich, den Sophos Endpoint Agent von dem Client zu entfernen. Die folgende Anleitung sollte nicht genutzt werden, solange es möglich ist, den Manipulationsschutz normal zu deaktivieren!
- Starten Sie das Windows-System im abgesicherten Modus.
- Klicken Sie auf Start –> Ausführen und geben Sie „services.msc“ ein. Bestätigen Sie mit Enter oder einem Klick auf OK.
- Suchen Sie nach dem Service „Sophos Anti-Virus“ und machen Sie einen Rechtsklick.
- Wählen Sie Eigenschaften aus dem Kontextmenü aus.
- Deaktivieren Sie den Service.
- Klicken Sie erneut auf Start –> Ausführen. Geben Sie „regedit“ ein. Bestätigen Sie mit Enter oder einem Klick auf OK.
- Wechseln Sie im Registrierungseditor zum Speicherort: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sophos MCS Agent
- Setzen Sie REG_DWORD „Start“ auf 0x00000004
- Wechseln Sie den Speicherort auf: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sophos Endpoint Defense\TamperProtection\Config
- Setzen Sie die REG_DWORD-Werte „SAVEnabled“ und „SEDEnabled“ auf 0
- Wechseln Sie den Speicherort auf: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Sophos\SAVService\TamperProtection
- Setzen Sie den Wert bei „REG_DWORD“ auf 0
- Starten Sie das System im normalen Modus.
Der Manipulationsschutz sollte nun deaktiviert sein und Sie können mit der normalen Deinstallation fortfahren.
https://support.sophos.com/support/s/article/KB-000033686?language=en_US
Overview
This knowledge base article provides information on gathering the uninstall string of different Sophos Endpoint Security and Control components and how to uninstall each using a command line or a batch file. Every product version has a different uninstall string, meaning that the script does not uninstall components as expected.
Do not run the uninstall batch file on a computer with the Sophos Management Server, one that has been designated as a Message Relay, or on computers running server-side components such as Sophos Update Manager or Sophos PureMessage.
Sophos is not accountable for any loss of data resulting from following these instructions.
Aside from uninstalling Sophos using the uninstall strings, you can also remove Sophos using our tool called SophosZap.
The following sections are covered:
Applies to the following Sophos products and versions:
Sophos Endpoint Security and Control
Get the uninstall strings
Open a Command Prompt with admin privilege and run the following commands:
- 32-bit:
REG QUERY HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall /s /f SOPHOS > C:\Sophos_Uninstall_Strings.txt
- 64-bit:
REG QUERY HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall /s /f SOPHOS > C:\Sophos_Uninstall_Strings.txt
Example:
For Sophos Anti-Virus 10.8.4.227
, the command REG QUERY
will result to HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{01423865-551B-4C59-B44A-CC604BC21AF3}
The uninstall command will then be MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3}
Note: On a 64-bit computer, run as well the 32-bit REG QUERY
command if the other Sophos components aren’t appearing.
Review the Windows installer parameters
The uninstall strings copied from the registry may contain MsiExec.exe
parameters. Change the parameters to control what the user sees on the screen and how the computer behaves.
For example, the uninstall string for Sophos Anti-Virus 10.8.4.227
and the modified actions are the following:
Action | String |
---|---|
Uninstall string | MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} |
Silent uninstall | MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn |
Delay restart | MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS |
Logs created | MsiExec.exe /X{01423865-551B-4C59-B44A-CC604BC21AF3} /qn REBOOT=SUPPRESS /L*v %windir%\Temp\Uninstall_SAV10_Log.txt |
It’s advisable to create a log file as part of the uninstall process for each component to help facilitate troubleshooting if an issue appears. A separate file is needed for each component.
For further information on Windows Installer (MsiExec.exe
) and its associated parameters, it is recommended that you consult up-to-date Microsoft documentation.
Create the batch file
- Turn off tamper protection on the computer that Sophos will be uninstalled from.
- Stop Sophos AutoUpdate Service to prevent a potential update or conflict during the uninstall process. The command
net stop "Sophos AutoUpdate Service"
can be included in the batch file. - Open Notepad and paste the uninstall string for each component. Make sure to observe the following order:
- Sophos Remote Management System
- Sophos Network Threat Protection
- Sophos Client Firewall
- Sophos Anti-Virus
- Sophos AutoUpdate
- Sophos Diagnostic Utility
- Sophos Exploit Prevention or Sophos CryptoGuard (on a Server)
- Sophos Clean
- Sophos Patch Agent
- Sophos Endpoint Defense
Note: For more information, go to Sophos Central Endpoint and Server: How to uninstall Sophos using the command line or a batch file.
- Save the file and change its extension from
.txt
to.bat
. - Try the batch file on a test computer.
If the uninstall fails, extract the SDU logs from the affected endpoint or server. Download and run the Windows zip version from Sophos Diagnostic Utility (SDU): How to locate and download, then submit the logs to Sophos Support.
Hochgeladene Dateien: