I'm having a hard time creating a smart group to push the latest Flash player version.
All I want to do is create a smart group to the clients are missing the version installer I created and the "and/or" "is/is not" "like/not like" is confusing me. I also don't know how to "future-proof" the smart group... Meaning I dont want a user manually upgraded to a newer version to be downgraded for any reason if I flush history...
Can someone please post an example of what a smart group would look like if I wanted all users to missing the latest Adobe Flash 11.5.502.146.
I'm new to all this so if something isnt clear please let me know.
Thanks for any assistance.
Solved
Flash Player Smart Group jargon
Best answer by cbrewer
I use an extension attribute:
#!/bin/sh
#Extension Attribute checks to display Adobe Flash Player Version number
if [ -d /Library/Internet Plug-Ins/Flash Player.plugin ]; then
FlashPluginVersion=`/usr/bin/defaults read /Library/Internet Plug-Ins/Flash Player.plugin/Contents/Info CFBundleVersion`
echo "<result>$FlashPluginVersion</result>"
else
echo "<result>Not found</result>"
fi
exit 0
Once you have that it's easy to build a smart group that looks at the version number.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
