JAMF Connect 2.3

Habib-Rahman
New Contributor III

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

2 REPLIES 2

junjishimazaki
Valued Contributor

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.

!/bin/bash

##################################################################

A script to collect the version of Jamf Connect installed.

If Jamf Connect Login is not installed "Not Installed" will return back

##################################################################

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>"

talkingmoose
Moderator
Moderator

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.