I tweaked out an EA to show the Trend Apex One AV version, however, out of 80+ machines it only returns the version value for one. What am I missing here?
#!/bin/sh
# Returns the "Product Version" of the installed client, if found
if [ -d /Library/Application Support/TrendMicro/TmccMac/UIMgmt.app ]; then
AppVersion=`/Library/Application Support/TrendMicro/TmccMac/UIMgmt.app/Contents/Info.plist CFBundleShortVersionString`
echo "<result>$AppVersion</result>"
else
echo "<result>Not installed</result>"
fi
exit 0