This worklet will check to see if LogMeIn is installed and if it isn’t, will download and install it.
See this KB article for how to setup a worklet:
https://help.automox.com/hc/en-us/articles/5603324231700-Creating-a-Worklet
Evaluation Code:
#!/bin/bash
if r -d "/Applications/LogMeIn Client.app" ]; then
exit 0
else
exit 1
fi
Remediation Code:
#!/bin/bash
echo -e "Downloading LogMeIn Client..."
curl -L -o "/tmp/LogMeInClientMac.dmg" https://secure.logmein.com/LogMeInClientMac.dmg
echo -e "Installing LogMeIn Client..."
hdiutil attach "/tmp/LogMeInClientMac.dmg" -nobrowse
ditto "/Volumes/LogMeInClient/LogMeIn Client.app" "/Applications/LogMeIn Client.app"
echo -e "Cleaning up..."
hdiutil detach "/Volumes/LogMeInClient"
rm -f "/tmp/LogMeInClientMac.dmg"