I need the uninstall (for all 3 msi's) string needed for Safeguard Ver 8
This thread was automatically locked due to age.
I need the uninstall (for all 3 msi's) string needed for Safeguard Ver 8
Hi freebird317
Please refer to the article Sophos Central for Windows: How to uninstall using the command line or batch file. Let me know if this helps resolve your query.
Haridoss Sreenivasan
Technical Support Engineer | Sophos Technical Support
Knowledge Base | @SophosSupport | Video tutorials
Remember to like a post. If a post (on a question thread) solves your question use the 'This helped me' link.
That link is for endpoint, I am looking for safeguard uninstall strings
Hello Freebird - This is probably what you need.
I've just tested this on my own device with client versions listed.
{D3E81C32-7EBC-4733-96BE-5F5A178FF556}, Sophos SafeGuard Client Configuration 8.00.2.13, 8.00.2.13
{62E54E92-4906-4B21-BFCA-04010831BFBF}, Sophos SafeGuard Client 8.00.0.251, 8.00.0.251
{840B73E4-F304-4954-8BB2-278F91363E25}, Sophos SafeGuard Preinstall 8.00.0.251, 8.00.0.251
Used the command string
MsiExec.exe /qn /X{D3E81C32-7EBC-4733-96BE-5F5A178FF556} REBOOT=ReallySuppress ( for the Client config)
MsiExec.exe /qn /X{62E54E92-4906-4B21-BFCA-04010831BFBF} REBOOT=ReallySuppress (for the Client itself)
MsiExec.exe /qn /X{840B73E4-F304-4954-8BB2-278F91363E25} REBOOT=ReallySuppress (and finally for the Client pre-install)
Do check which versions you have installed as it may be a different GUID than mine listed.
You can create the following VBS script (copy and paste this into a notepad doc and rename as "msilist.vbs" and run this from desktop) It'll then list the elements and GUID you need in a file created called msiinfo.txt. This isn't my script but it works well!