cancel
Showing results for 
Search instead for 
Did you mean: 
Klouie
Active Contributor

Uninstall LogMeIn Antivirus silently

Hi, Is there a way to silently remove LogMeIn AV from our computers via a script or CLI switches?

1 ACCEPTED SOLUTION

Accepted Solutions
Keurig
New Contributor

Re: Uninstall LogMeIn Antivirus silently

We received this script from our account rep.  Save as a batch file and you can runit with One2Many or the like:

 

@echo off
FOR /F "skip=2 tokens=2,*" %%A IN ('reg.exe query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Endpoint Security" /v "UninstallString"') DO SET "UninstallString=%%B"
%UninstallString% /silent /remove
shutdown.exe /r /t 10

View solution in original post

4 REPLIES 4
ReddstarR
Active Contributor

Cannot uninstall Kaspersky with One to many.

Tried the suggested method https://help.logmein.com/articles/en_US/FAQ/LogMeIn-Central-Kaspersky-Removal-Guide and it is not working. 

 Anyone else having this issue?

Keurig
New Contributor

Re: Uninstall LogMeIn Antivirus silently

We received this script from our account rep.  Save as a batch file and you can runit with One2Many or the like:

 

@echo off
FOR /F "skip=2 tokens=2,*" %%A IN ('reg.exe query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Endpoint Security" /v "UninstallString"') DO SET "UninstallString=%%B"
%UninstallString% /silent /remove
shutdown.exe /r /t 10

Klouie
Active Contributor

Re: Uninstall LogMeIn Antivirus silently

Thanks! That seems to do it for me.

VelocITjswarner
New Member

Re: Uninstall LogMeIn Antivirus silently

Keurig, thanks for sharing! LogMeIn phone support didn't have this information at the ready, but I found your thread and brought it to their attention. Your legwork will save a lot of time!