Symantec Endpoint Protection Client Uninstall
I am trying to use a managed installation to uninstall Symantec. I am able to get it to work using the uninstall command from the software page:
Uninstall Command:
MsiExec.exe /I{7D256468-9487-4498-9C6F-F18E9DCEA212}
The problem is I can't get it to work silently. I've tried the /qb switch and the /silent switch. I've tried it before the /I switch and I've tried it after the product key. It always looks like it runs successfully but Symantec is never uninstalled.
Anyone ever do this successfully and if so how did you do it? Symantec is telling me I have to user clean wipe one each of our 1300 PCs individually.
Thanks.
-
the /I switch in MSIs signify install rather than uninstall. You'll want something like: MsiExec.exe /qn /X {7D256468-9487-4498-9C6F-F18E9DCEA212} - JasonEgg 3 years ago
Answers (4)
Do you still have the installation msi file? If so I would run it with a /? In the command line to see if the option has actually been made available by Symantec. There is a chance that they have not done this, in which case it is a Symantec issue rather than a KACE issue and you will just have to accept that it can’t be done, good luck
I was able to remove SEP using PowerShell commands.
This command will pull the MSI ID for the uninstall.
GWMI Win32_Product | where{$_.Caption -like "*Symantec*"}
If you find like me you have both End Point and Cloud Agent then this took two separate runs.
First I had to disable the startups.
Set-Service -Name SsPaAdm -StartupType Disabled
Set-Service -Name ssPaSetMgr -StartupType Disabled
Then run the below for End Point. Change your MIS Id as needed
msiexec /x "{4C89867B-2E80-4B0D-87DB-1BD643D5EF5D}" /qb
Follow by a restart.
After I used the below to remove Cloud Agent. Keep in mind the above for End Point doesn't Force a reboot. And occasionally it took two reboots. The below will force a reboot on the machine.
(Get-WmiObject -Class Win32_Product -Filter "Name='Symantec.cloud - Cloud Agent'").Uninstall()
This worked for most of our workstations.