I am looking for a way (extension Attribute) to determine the version of Junos Pulse.app that is installed on client machines. The app has a .ini flie in the apps contents/resources folder that I'm looking to query clients to identify installed versions. Does anyone have an extension attribute that I can use to find if the specific version used of the Junos Pulse app?
Solved
Extension Attribute to find a plist/ini version info for the JunosPulse.app
Best answer by waqas
Here's what i used to grab the exact version of the pulse client. Unfortunately, I don't know the sed command enough to shave off the text before the '=' sign but this definitely did the job for me to make the EA and scope my update Pulse policy.
#!/bin/bash
################################
# Check Junos Pulse version
################################
JunosPulseVersion=`grep -o "DisplayVer.*" /Applications/Junos Pulse.app/Contents/Resources/JunosPulseVersion.ini`
echo "<result> $JunosPulseVersion </result>"
exit 0Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.


