I had a issue where a macbook air was not triggering a policy for iBeacon printer deployments.
long story short, be aware of bluetooth versions!
To help identify macs that were capable of Bluetooth 4.0 we made a Extension Attribute.
We also made a smart group called iBeacon Ready based on this EA.
iBeacon Ready is 0
or
iBeacon Ready is 0x6
EA-
if [ -d /Library/Internet Plug-Ins/Flash Player.plugin ] ; then
bluetoothVer=$( system_profiler -detailLevel full SPBluetoothDataType | grep 'LMP Version:' | awk '{print $3}' )
echo "<result>$bluetoothVer</result>"
fi
seems to work, suggestions?
Dan