Posted on 04-06-2021 05:40 AM
Hey guys, a quick question is there any way of confirming those users that I have enrolled on to JAMF connect new version have 2.3.0 of JC on their devices? Thanks
Posted on 04-06-2021 08:14 AM
Hi, I use an EA to indicate the version of JC installed on a Mac. Or you Jamf's Patch Management to see the version is installed on a Mac.
NOT_INSTALLED="Not Installed"
RESULT=""
if [ -a /Library/Security/SecurityAgentPlugins/JamfConnectLogin.bundle/Contents/Info.plist ]
then
RESULT=$( /usr/bin/defaults read /Library/Security/SecurityAgentPlugins/JamfConnectLogin.bundle/Contents/Info.plist CFBundleShortVersionString )
else
RESULT="$NOT_INSTALLED"
fi
/bin/echo "<result>$RESULT</result>"
Posted on 04-06-2021 08:27 AM
If you're also a Jamf Pro customer, look at the list under Settings > Computer Management > Extension Attributes > New From Template > Jamf Applications. You can enable several EAs for Jamf Connect reporting there.
Otherwise, you can use the version from the Jamf Connect.app found in the Mac's Applications folder. This is effectively what one of the EAs is doing. The other EA will provide you the Jamf Connect login window version.