How to deploy Labtech Connectwise to MacOS Via Intune

You need to deploy via script as the .mpkg will also have the .sh file with the connection details

#!/bin/bash

mkdir /tmp/ltagent
cd /tmp/ltagent
curl -sS https://server.domain.com.au/LabTech/Deployment.aspx?InstallerToken=XXXXXXXXXXXX > ltagent.zip
unzip ltagent.zip
sudo installer -pkg LTSvc.mpkg -target /
sleep 20
rm *
cd .
rmdir /tmp/ltagent
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...