(Settings Application) is enabled, you will need to uninstall using the command line. Make sure you have the password to uninstall and if the password contains an '&' character, the password must be the final parameter or errors may occur (for example: CylanceUnifiedSetupx64.msi /uninstall /quiet UNINSTALLKEY=asdf&). Here are some useful commands used in the command window. NOTE: You will notice a couple of lines added to the scripts below that are specific commands for ScreenConnect. If you remove these two lines you can run these commands on any Windows machine. Here is an explanation of those lines: #!ps - This command tells SC the following commands are.
Removing Labtech from a computer can be very tedious.
It installs to the following location:
C:WindowsLTSVC
Stop processes and services with names including labvnc,LTSVC,LTSvcMon,LTTray
Run MSCONFIG and locate and disable services from startup.
Open elevated commmand prompt
sc delete LTService
sc delete LTSvcMon
sc delete labvnc
Screenconnect Manual Uninstall
Reboot machine to confirm removal.
Manually Uninstall Screenconnect
3 Comments
Manually Uninstall Screenconnect
- ChipotleEeveen Oct 31, 2016 at 08:43pm
Or as some clients call it 'The little green man in the task bar'
- Serranomattburakowski Aug 22, 2017 at 12:49pm
I've had better success by doing the following:
From an elevated command prompt, run:
wmic product where 'name like 'labtech%%' call uninstall /nointeractive
sc delete ltservice
sc delete ltsvcmon
Sc stop ltservice
sc stop ltsvcmonThen remove the following registry keys and all sub-keys/values:
HKLMSOFTWARELabtech
HKLMSOFTWAREWow6432NodeLabtech - SonoraCoNiGMa Apr 1, 2020 at 08:20pm
We had ConnectWise installed on our systems previously, which is a LabTech application. It installed a program called 'ScreenConnect Client' with a random series of numbers and letters after. We had to use this batch file to remove it.
@echo off
wmic product where 'name like 'ScreenConnect Client%%' call uninstall /nointeractive
sc config ltsvcmon start= disabled
sc config ltservice start= disabled
sc config labvnc start= disabled
sc stop ltsvcmon
sc stop ltservice
sc stop labvnc
taskkill /IM LTTray.exe >nul
sc delete ltsvcmon
sc delete ltservice
sc delete labvnc
reg delete 'HKLMSOFTWARELabTech' /f
reg delete 'HKLMSOFTWAREWow6432NodeLabTech' /f
rmdir /s /q C:WindowsLTSvcThere may also be some residual files in the Windows Temp folder as well that you may want to delete or clear.