Skip to main content

Using Kaseya LiveConnect on Desktop Linux

This article is about using a Linux Desktop and Browser to access devices with the Kaseya Agent installed (via the Kaseya web UI). It is NOT about running the Kaseya agent on Linux.

Dependencies

Firefox

If you prefer to use the Firefox browser, you need to install an add-on that can change the User-Agent string on requests. I chose this one: https://add0n.com/useragent-switcher.html

With a suitable plugin installed:

  • Browse the the Kaseya login page
  • Use the plugin to change the User-Agent string to some version on Chrome on Windows.
  • Refresh the page
  • Log in

Chrome / Chromium

I don't personally use this browser but I'm sure there are similar plugins available. Install one, change the User-Agent string for the Kaseya site to something that says it's Windows and then log in.

Wine

LiveConnect

Wrapper Script

#!/usr/bin/env bash

export WINEPREFIX=${HOME}/.wine
wine "C:\\Program Files\\Kaseya Live Connect\\KaseyaLiveConnect.exe" $@ 2>&1 >>/tmp/liveconnect.log

Notes