We slapped together a crude Extension Attribute to gather Outlook 2011 Identities folder sizes.
We know this can be shorter and "smarter". Any advice from the scripting uber-gurus? :)
#!/bin/bash
echo "<result>"
UserList=`dscl . list /Users UniqueID | awk '$2 > 500 { print $1 }'`
for u in $UserList ;
do results=`du -sh /Users/$u/Documents/Microsoft User Data/Office 2011 Identities/* | grep -v "[Back" | grep -v ".plist"`
echo $u $results
done
echo "</result>"
exit 0