Hey guys,
I couldn't manage to get the pre-existing extension attribute for DeepFreeze to work in my environment (perhaps my tech base isn't installing it correctly), but here's a quick extension attribute I wrote to get the status of DeepFreeze if it's installed:
#!/bin/bash
DFStatus=$(DFXPSWD="password" /Library/Application Support/Faronics/Deep Freeze/deepfreeze -u "user" -p status | grep "Frozen" | awk '{ print $3 }' | awk -F: '{ print $2 }')
if [ ! -f /Library/Application Support/Faronics/Deep Freeze/deepfreeze ]; then
echo "<result>DeepFreeze not installed.</result>"
elif [ "$DFStatus" == "TRUE" ] ; then
echo "<result>Frozen</result>"
else
echo "<result>Thawed</result>"
fi
fi
exit
This has been tested against DeepFreeze Enterprise Mac 5.70.2200.0758.