Hello
we use an Extension Attribute from this script
I think I found it within some Jamf Nation post a while ago
Hope it helps
Ciao
Carlo
#!/bin/sh
disk0=`diskutil info disk0 | grep "Solid State" | awk '{ print $3 }'`
disk1=`diskutil info disk1 | grep "Solid State" | awk '{ print $3 }'`
if [[ $disk0 == "Yes" ]]; then
echo "<result>disk0 is SSD</result>"
exit 0
elif [[ $disk1 == "Yes" ]]; then
echo "<result>disk1 is SSD</result>"
exit 0
fi
echo "<result>No SSD Drives</result>"
exit 0
@carlo.anselmi
Perfect! Works!! What did you put in as your criteria? "if not 'No SSD Drives'"
Thanks
Where "Tipo disco" is the given name to EA
Ciao
Carlo

Yeah thats what we've got! Cheers! Really helps!