The managed service provider that does the helpdesk support has gone silent after being told that their services will no longer be needed. It might be prudent to remove Kaseya from our computers. How can I go about doing that? I don't have access to the Kaseya console.
Most of the computers are on a LAN with a domain controller. I can script whatever I need to. Some are laptops and/or remote users. I need some way to get to those people too.
The majority of the computers are running version 6.3.0.19 on Windows. There are also some Macs. I don't have access to a Mac yet to investigate.
At this point I don't even have a list of all the computers that have Kaseya installed.
Here is the uninstall section from the registry on my computer.
@echo off
for /f "tokens=3 delims= " %%A in ('sc getkeyname "Kaseya Agent"') do set KGUID=%%A
for /f "delims=" %%A in ('sc qc %KGUID% ^| find "BINARY_PATH_NAME"') do set KPATH=%%A
for %%A in (%KPATH%) do set KPATH=%%A
set KPATH=%KPATH:BINARY_PATH_NAME=%
set KPATH=%KPATH:: =%
set KPATH=%KPATH:"=%
set KPATH=%KPATH:\AgentMon.exe=%
http://community.kaseya.com/xsp/f/26/t/13989.aspx
@echo off
for /f "tokens=3 delims= " %%A in ('sc getkeyname "Kaseya Agent"') do set KGUID=%%A
for /f "delims=" %%A in ('sc qc %KGUID% ^| find "BINARY_PATH_NAME"') do set KPATH=%%A
for %%A in (%KPATH%) do set KPATH=%%A
set KPATH=%KPATH:BINARY_PATH_N
set KPATH=%KPATH:: =%
set KPATH=%KPATH:"=%
set KPATH=%KPATH:\AgentMon.exe
"%KPATH%\KASetup.exe" /r /s /g %KGUID% /l "%TEMP%\kasetup.log"