Hi all,
just testing with the latest release of Flash from https://www.adobe.com/products/flashplayer/distribution5.html
I installed it on a test machine and ran recon but it doesn't show up in the Patch reporting, it still shows the previous version for this machine.
I've ;
deleted and re-added the Flash Player Patch
restarted MySQL on our JSS
tested on a 2nd machine and ran recon
If i take the Extension Attribute from the Flash Player Patch and run it locally it reports the correct version as 26.0.0.137
#!/usr/bin/env bash
##############################################################################
# A script to collect the version of Adobe Flash Player currently installed. #
# If flash is not installed "Not Installed" will return back #
##############################################################################
RESULT="Not Installed"
if [ -f "/Library/Internet Plug-Ins/Flash Player.plugin/Contents/version.plist" ] ; then
RESULT=$( /usr/bin/defaults read "/Library/Internet Plug-Ins/Flash Player.plugin/Contents/version.plist" CFBundleVersion )
fi
echo "<result>$RESULT</result>"
am i missing something obvious here ? (probably!)