Forum Discussion

Klouie's avatar
Klouie
Active Contributor
6 years ago

Uninstall LogMeIn Antivirus silently

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

  • 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

  • Keurig's avatar
    Keurig
    New Contributor

    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's avatar
      Klouie
      Active Contributor

      Thanks! That seems to do it for me.

    • VelocITjswarner's avatar
      VelocITjswarner
      New Member

      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!