Hello Jamf Nation,
We have been having a really hard time silently installing LogMeIn as the Extension pop ups are still appearing despite adding all the necessary PPPC, System ExtensionS
We have a policy setup that Installs the Client with the following script which works great:
#!/bin/sh
############################################
# LogMeIn for Mac silent deployment script
# In order to use, you must be a subscriber of LogMeIn Central
#
# To get a Deploy ID, log in to Central, click Deployments, then create a new one
# Customize the settings as you see fit
# The Deploy ID is part of the URL that is generated
# ex. https://secure.logmein.com/i?l=en&c=xyz
# xyz is the Deploy ID
#
# Tested on OS X 10.15.6 (Mojave) with JSS 10.23.0
############################################
############################################
# Set the deploy ID via command line argument
#
#
DEPLOYID=$4 #Change to 1 if not using Casper Suite
#
echo "Deploy ID is: $DEPLOYID"
############################################
echo "Running LogMeIn host install"
# Change working directory to /tmp
cd /tmp
# Clean up any existing LogMeIn install files first
rm -rf /tmp/LMI
# Create working folder, LMI doesn't like being in the root of /tmp
mkdir LMI
cd LMI
# Download LogMeIn Mac software
echo "Downloading LogMeIn installer"
curl -O https://secure.logmein.com/LogMeInInstallerMac.zip
# Extract the installer
echo "Unzipping LogMeIn installer"
unzip LogMeInInstallerMac.zip
# Get the versioned file name
FILE="$(ls | grep LogMeIn*.app)"
echo "File name is: $FILE"
# Write the deploy ID as an extended attribute on the install package
echo "Setting deploy ID as attribute"
xattr -w com.logmein.deployid $DEPLOYID "$FILE"
echo "Reading deploy ID attribute to confirm"
xattr -p com.logmein.deployid "$FILE"
# Run the silent install
echo "Running the LogMeIn installer"
./"$FILE"/Contents/MacOS/Lili --silent
# Remove temp files
echo "Cleaning up temp files"
rm -rf /tmp/LMI
echo "Exiting with success"
exit 0
From there I have a configuration profile that has PPPC, Approved Kernel Extensions (for Catalina machines), and System Extensions (for Big Sur)
In the results the installation goes flawless but am still getting promoted to allow the LogMeIn Extensions and it's a bit frustrating. Does anyone have any Intel on how to install LogMeIn silently on Big Sur. Any assistance on this would be greatly appreciated.